diff --git a/.gitea/workflows/workflow.yml b/.gitea/workflows/workflow.yml index f611f72..b40a501 100644 --- a/.gitea/workflows/workflow.yml +++ b/.gitea/workflows/workflow.yml @@ -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 \ No newline at end of file