From f665b0890f5642647d45ce7eceddf8324cfb24e6 Mon Sep 17 00:00:00 2001 From: Alireza Date: Sat, 28 May 2022 22:16:14 +0430 Subject: [PATCH] Change commit user to github-actions --- action.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yaml b/action.yaml index 2284498..f33ebd5 100644 --- a/action.yaml +++ b/action.yaml @@ -64,9 +64,9 @@ runs: - name: Commit and push changes run: | - git config --global user.name github-actions - git config --global user.email github-actions@github.com - git commit -am "Bump version" \ - --author="${{ github.actor }} <${{ github.actor }}@github.com>" + git config user.name github-actions[bot] + git config user.email github-actions[bot]@users.noreply.github.com + git commit -am "Bump version" --author=\ + "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>" git push shell: bash