Skip to content

Commit

Permalink
add commit statement
Browse files Browse the repository at this point in the history
  • Loading branch information
f-peverali committed Apr 30, 2024
1 parent 1fb60d9 commit 5cc94ee
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/TC-version-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,16 @@ jobs:
- name: execute py script # run main.py
run: python ./scripts/release_publish.py -b


- name: commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git diff-index --quiet HEAD || (git commit -a -m "updated logs" --allow-empty)
- name: push changes
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main

0 comments on commit 5cc94ee

Please sign in to comment.