From 9f223c08512c55e4faddd3189287b0ab1f66c2a7 Mon Sep 17 00:00:00 2001 From: Jason Garber Date: Thu, 23 May 2024 22:35:32 -0400 Subject: [PATCH] Correctly set GitHub Actions bot See https://github.com/actions/checkout/pull/1707. --- .github/workflows/scrape.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scrape.yml b/.github/workflows/scrape.yml index 6fcf1d9..4a79c3b 100644 --- a/.github/workflows/scrape.yml +++ b/.github/workflows/scrape.yml @@ -24,8 +24,8 @@ jobs: - name: Commit and push changed files run: | git diff - git config --global user.email 'github-actions[bot]@users.noreply.github.com' - git config --global user.name 'github-actions[bot]' + git config --global user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" git add -A git commit -m "🤖 Automated update (`date +%FT%T%z`)" || exit 0 git push