From 4680f97ffdc7fb5baab50b70b95f3c9c7450d953 Mon Sep 17 00:00:00 2001 From: Edward Park Date: Tue, 20 Feb 2024 09:36:05 -0800 Subject: [PATCH] chore: set git user as github-actions[bot] (#3) --- action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index 63a4a86..bbd9b5f 100644 --- a/action.yaml +++ b/action.yaml @@ -16,8 +16,8 @@ runs: steps: - id: configure_git run: | - git config user.name "$GITHUB_ACTOR" - git config user.email "$GITHUB_ACTOR@users.noreply.github.com" + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" shell: bash - name: Get current date