From 73613fc1fef4e6b85ec07a5518ab46d5534c8fb8 Mon Sep 17 00:00:00 2001 From: Jason Garber Date: Thu, 23 May 2024 21:39:04 -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 6835546..942e80d 100644 --- a/.github/workflows/scrape.yml +++ b/.github/workflows/scrape.yml @@ -23,8 +23,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 "🤖 Add new post for `date +%F`" || exit 0 git push