.
learn-github-actions / format-branch (push) Failing after 20s Details

This commit is contained in:
giles 2023-10-21 16:34:54 +01:00
parent 0ba8b1277e
commit 654d7c0557
1 changed files with 9 additions and 0 deletions

View File

@ -25,3 +25,12 @@ jobs:
default_author: github_actor
message: 'xml files converted to yml'
push: false
- name: GIT commit and push all changed files
env:
CI_COMMIT_MESSAGE: Continuous Integration Build Artifacts
CI_COMMIT_AUTHOR: Continuous Integration
run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "username@users.noreply.github.com"
git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} xml files converted to yml"
git push -f origin HEAD:product-development