From edd2a5a8f0bd5db797615122acad8afe2ed44839 Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Thu, 1 Jun 2023 18:21:30 +0900 Subject: [PATCH] Use github actions bot account as a commiter https://github.com/actions/checkout/issues/13 --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index d455311..74fa13a 100644 --- a/action.yml +++ b/action.yml @@ -21,6 +21,11 @@ runs: steps: - name: Checkout uses: actions/checkout@v3 + - name: git setting + run: | + git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com' + git config --local user.name 'github-actions[bot]' + shell: bash # Referenced https://github.com/dprint/check/blob/2f1cf31537886c3bfb05591c031f7744e48ba8a1/action.yml#L16-L20 - name: Install dprint shell: bash