From 268c63f67ec200336b4bcf72c9826c0a862127a2 Mon Sep 17 00:00:00 2001 From: bananarama92 Date: Sat, 27 May 2023 13:08:28 +0200 Subject: [PATCH] CI: Use the full user name and mail of github actions xref https://github.com/actions/checkout/pull/1184 --- .github/workflows/pages.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pages.yaml b/.github/workflows/pages.yaml index 54b8bc0b..ac7fc6a0 100644 --- a/.github/workflows/pages.yaml +++ b/.github/workflows/pages.yaml @@ -77,8 +77,8 @@ jobs: cp artifacts/main/package-lock.json artifacts/main/mbs.js artifacts/main/mbs.js.map artifacts/${{ github.ref_name }}/ git add artifacts/${{ github.ref_name }}/* - git config --local user.name "GitHub Action [bot]" - git config --local user.email "action@github.com" + git config --local user.name "github-actions[bot]" + git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" git commit -m "CI: Add MBS ${{ github.ref_name }} release artifacts" -m "Last commit: https://github.com/${{ github.repository }}/commit/${{ github.sha }}" git push - name: Define the latest MBS release