From 4aa5b978be4093e88624110134715a0b13b7600a Mon Sep 17 00:00:00 2001 From: ChrisCarini <6374067+ChrisCarini@users.noreply.github.com> Date: Fri, 1 Jan 2021 13:57:14 -0800 Subject: [PATCH] Update README.md example step to use github-actions[bot] user See the differences between these two 'users' here: https://github.com/actions/checkout/issues/13#issuecomment-724415212 As well as some investigation here: https://github.community/t/github-actions-bot-email-address/17204 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 234ffb7..0ef0d1c 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,8 @@ jobs: run: | echo ${{ github.ref }} git add . - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" + git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" git commit -m "CI: Automated build push" -a | exit 0 - name: Push changes if: github.ref == 'refs/heads/master'