From 54df1fd0a87156eadf453cee6276c845109e4b50 Mon Sep 17 00:00:00 2001 From: Shiming Zhang Date: Thu, 20 Jun 2024 10:04:13 +0800 Subject: [PATCH] Update user in verify --- .github/workflows/verify-pr.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/verify-pr.yml b/.github/workflows/verify-pr.yml index c2b957f..3e18a4b 100644 --- a/.github/workflows/verify-pr.yml +++ b/.github/workflows/verify-pr.yml @@ -22,7 +22,8 @@ jobs: - uses: actions/checkout@v4 - name: Commit PR run: | - git config --global user.name "bot" + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" wget -O pr.patch https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }}.patch && \ git am -3 pr.patch && rm -rf pr.patch