From 2816088e7f2e5a28a6206f0601dd088bf2fa3e52 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Fri, 12 May 2023 08:00:56 -0700 Subject: [PATCH] Use the full email for the GitHub Actions bot (#947) This is an aesthetic tweak to let the proper avatar show up: * https://github.com/orgs/community/discussions/26560 * https://github.com/actions/checkout/pull/1184 --- .github/workflows/dependabot-build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dependabot-build.yml b/.github/workflows/dependabot-build.yml index 23a26c147..1c08ab192 100644 --- a/.github/workflows/dependabot-build.yml +++ b/.github/workflows/dependabot-build.yml @@ -61,7 +61,8 @@ jobs: - name: Check in any change to dist/ run: | git add dist/ - git config user.name github-actions - git config user.email github-actions@github.com + # Specifying the full email allows the avatar to show up: https://github.com/orgs/community/discussions/26560 + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git commit -m "[dependabot skip] Update dist/ with build changes" || exit 0 git push