From f18ca633b0c38d67a5c90b4ac1bd6c79f4c787c1 Mon Sep 17 00:00:00 2001 From: Steve Pope Date: Fri, 15 Dec 2023 16:47:34 -0330 Subject: [PATCH] Why is this needed here, and not other flows? --- .github/workflows/release_hotfix.yml | 2 ++ .github/workflows/release_version.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/release_hotfix.yml b/.github/workflows/release_hotfix.yml index 8ea700c..022f140 100644 --- a/.github/workflows/release_hotfix.yml +++ b/.github/workflows/release_hotfix.yml @@ -24,5 +24,7 @@ jobs: env: GIT_AUTH_TOKEN: ${{ secrets.SRE_GHACTIONS_TOKEN }} run: | + git config user.name "ami-ci" + git config user.email "<>" git tag ${{ steps.bump-semver.outputs.new_version }} git push origin ${{ steps.bump-semver.outputs.new_version }} diff --git a/.github/workflows/release_version.yml b/.github/workflows/release_version.yml index 1672904..7741d3d 100644 --- a/.github/workflows/release_version.yml +++ b/.github/workflows/release_version.yml @@ -34,6 +34,8 @@ jobs: env: GIT_AUTH_TOKEN: ${{ secrets.SRE_GHACTIONS_TOKEN }} run: | + git config user.name "ami-ci" + git config user.email "<>" git pull origin develop git checkout master git merge develop