From e61e715ee5291d3f4a086d80c7141fed8a6a7fdb Mon Sep 17 00:00:00 2001 From: Corneil du Plessis Date: Wed, 24 May 2023 19:30:00 +0200 Subject: [PATCH] Added git config --- .github/workflows/common.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml index 0159c5c4..f136c5f7 100644 --- a/.github/workflows/common.yml +++ b/.github/workflows/common.yml @@ -658,8 +658,10 @@ jobs: - name: Tag Release if: ${{ needs.parameters.outputs.is_version_change == 'true' }} shell: bash - run: | + run: | pushd stream-applications > /dev/null + git config user.name "GitHub Actions Bot" + git config user.email "<>" # consider removing for milestone git checkout -b ${{ needs.parameters.outputs.build_version }} git commit -a -m "Release ${{ needs.parameters.outputs.build_version }}"