From 4c0ad2ff5f2c39eecc6bb6433d94edd5544afc02 Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Fri, 1 Dec 2023 00:33:58 +0100 Subject: [PATCH] fix: add git identity for github actions bot --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3941093..c79920f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -58,6 +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 tag -fa deployed -m "Deployed to Azure" git push origin --tags --force