From 032ffbefae89073f934cf2f508fe68c66a637726 Mon Sep 17 00:00:00 2001 From: Parker Brown <17183625+parkerbxyz@users.noreply.github.com> Date: Fri, 10 Jan 2025 15:38:54 -0800 Subject: [PATCH] Include `github.actor_id` in default `commit_author` This mimics the default commit author used by GitHub and matches the format used for the default `commit_user_email`. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 8192c950..fe8bfb36 100644 --- a/action.yml +++ b/action.yml @@ -43,7 +43,7 @@ inputs: commit_author: description: Value used for the commit author. Defaults to the username of whoever triggered this workflow run. required: false - default: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> + default: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com> tagging_message: description: Message used to create a new git tag with the commit. Keep this empty, if no tag should be created. required: false