From 620bf553543c0376d521491816f02b0c4872f65f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Go=C3=9Fe?= Date: Tue, 4 Jun 2024 11:40:19 +0200 Subject: [PATCH] docs: use recommended git config setup --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5fae87b1..fc4e594e 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,9 @@ jobs: fetch-depth: 0 - name: Configure git run: | - git config --global user.email "action@github.com" - git config --global user.name "GitHub Action" + # Setup for commiting using built-in token. See https://github.com/actions/checkout#push-a-commit-using-the-built-in-token + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - name: Update Browserslist database and create PR if applies uses: c2corg/browserslist-update-action@v2 with: