From ad3c01bf0ed745b1731b85f70c32f1401567c24a Mon Sep 17 00:00:00 2001 From: Sheldon Hull Date: Tue, 23 Jan 2024 15:47:09 +0100 Subject: [PATCH] fix(changie-trigger-release): work through initial successful run --- .github/workflows/changie-trigger-release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/changie-trigger-release.yml b/.github/workflows/changie-trigger-release.yml index c1cb8451..f8ee823a 100644 --- a/.github/workflows/changie-trigger-release.yml +++ b/.github/workflows/changie-trigger-release.yml @@ -39,6 +39,10 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 # Ensures a full checkout + - name: configure-default-git-committer + run: | + git config user.name github-actions + git config user.email github-actions@github.com - name: check-branch-existence id: check_branch run: | @@ -116,7 +120,6 @@ jobs: run: | echo "Adding changelog files for commit..." git add .changes/* CHANGELOG*.md aqua.yaml - - name: create-new-branch if: steps.check_branch.outputs.BRANCH_ALREADY_EXISTS == 'false' run: |