From 654d7c0557337ee64cabb94975ce7300f95a4610 Mon Sep 17 00:00:00 2001 From: giles Date: Sat, 21 Oct 2023 16:34:54 +0100 Subject: [PATCH] . --- .gitea/workflows/workflow.yml | 9 +++++++++ 1 file changed, 9 insertions(+) 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