From 8e1908130069ae7495758f1feccf7c91fa356c26 Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Fri, 1 Dec 2023 01:07:35 +0100 Subject: [PATCH] fix: use github actions bot as identity --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5620c30..a29085f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -58,8 +58,8 @@ jobs: - if: env.DEPLOYED_TAG_EXISTS == 'false' || env.NO_CHANGES == 'false' name: Tag Deployment run: | - git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" - git config --global user.email "bartvdbraak@users.noreply.github.com" + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" git tag -fa deployed -m "Deployed to Azure" git push origin --tags --force