From 052b245abf6eeb8ada06ce85d5db62f203d03e5f Mon Sep 17 00:00:00 2001 From: giles Date: Sun, 22 Oct 2023 23:56:47 +0100 Subject: [PATCH] ... --- .gitea/workflows/convert-built-to-yml.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/convert-built-to-yml.yml b/.gitea/workflows/convert-built-to-yml.yml index f4efab9..222ba5e 100644 --- a/.gitea/workflows/convert-built-to-yml.yml +++ b/.gitea/workflows/convert-built-to-yml.yml @@ -15,6 +15,14 @@ jobs: - uses: http://sigyl.com:3000/actions/setup-node@v3 with: node-version: '20' + - name: GIT push + env: + CI_COMMIT_MESSAGE: converted to yml for review. + 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 push origin HEAD:${{ env.DEVELOPMENT_BRANCH }} - uses: http://sigyl.com:3000/actions/batch2yaml@master with: action: yml @@ -34,7 +42,6 @@ jobs: # git checkout -b ${{ env.DEVELOPMENT_BRANCH }} git add -A git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} xml files converted to yml" - git pull origin ${{ env.DEVELOPMENT_BRANCH }} git push origin HEAD:${{ env.DEVELOPMENT_BRANCH }} #- name: push development # env: