From 3c3f371791586f7dc2e299a9f02c4af797abfa2d Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Wed, 18 Mar 2026 22:28:25 +0800 Subject: [PATCH] fix: use canonical GitHub Actions bot email with numeric ID The generic email 'github-actions[bot]@users.noreply.github.com' does not match GitHub's actual bot account. Using the numeric-prefixed form '41898282+github-actions[bot]@users.noreply.github.com' ensures commits made by the workflow are correctly attributed to the bot account. Co-Authored-By: Claude --- .github/workflows/fetch-github-stars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/fetch-github-stars.yml b/.github/workflows/fetch-github-stars.yml index 0c7aba5..e591ad1 100644 --- a/.github/workflows/fetch-github-stars.yml +++ b/.github/workflows/fetch-github-stars.yml @@ -31,7 +31,7 @@ jobs: - name: Commit updated star data run: | git config user.name "github-actions[bot]" - git config user.email "github-actions[bot]@users.noreply.github.com" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git add website/data/github_stars.json if ! git diff --cached --quiet; then git commit -m "chore: update GitHub stars data"