Skip to content

Commit

Permalink
Feature/automate version update on tc ptdata 755 (#401)
Browse files Browse the repository at this point in the history
* init action for TC update version

* add tested gh action

* Update TC-version-update.yml

* update strip TC prefix
  • Loading branch information
f-peverali authored May 30, 2024
1 parent 1da16dd commit 702535b
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/TC-version-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@

name: TC version update

# Controls when the action will run.
on:
push:
branches:
- 'TC-*'
- 'TC_*'


# setup python and run script
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2 # checkout the repository content

- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10' # install the python version needed

- name: install python packages
run: |
python -m pip install --upgrade pip
pip install pyyaml
- name: execute py script # run main.py
run: python ./scripts/release_publish.py -b

- name: Add & Commit
uses: EndBug/add-and-commit@v9
with:
committer_name: GitHub Actions Bot
committer_email: [email protected]
message: auto-generated file update of TC version by GitHub Actions (CI FSH to FHIR Validation)
6 changes: 4 additions & 2 deletions scripts/release_publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ def get_new_release_version_from_branch_name() -> str:


def modify_TC_branch_name_to_version(git_branch):
version = git_branch.lstrip('TC-')
version = git_branch.lstrip('TC_')
if git_branch.startswith('TC-'):
version = git_branch.lstrip('TC-')
elif git_branch.startswith('TC_'):
version = git_branch.lstrip('TC_')
return version

def create_files_to_update_list(config):
Expand Down

0 comments on commit 702535b

Please sign in to comment.