From 1667c9c0773b71fccfd6f49da8e3e2fd8c73ac70 Mon Sep 17 00:00:00 2001 From: Ganden Schaffner Date: Tue, 2 Aug 2022 00:00:00 -0700 Subject: [PATCH] Fix user.* git-config example See https://github.com/orgs/community/discussions/26560. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7619c06..75638b5 100644 --- a/README.md +++ b/README.md @@ -217,8 +217,8 @@ jobs: - uses: actions/checkout@v3 - run: | date > generated.txt - git config user.name github-actions - git config user.email github-actions@github.com + git config user.name 'github-actions[bot]' + git config user.email '41898282+github-actions[bot]@users.noreply.github.com' git add . git commit -m "generated" git push