From c8eaee63f135780fd7518fe53568bafd6619bd6f Mon Sep 17 00:00:00 2001 From: Conrad Date: Mon, 17 Feb 2020 23:02:27 +0100 Subject: [PATCH] Fixed Naming Mistake --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index a1c21d4..b55c384 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -5,7 +5,7 @@ set -eux # Function for setting up git env in the docker container (copied from https://github.com/stefanzweifel/git-auto-commit-action/blob/master/entrypoint.sh) _git_setup ( ) { git config --global user.email "actions@github.com" - git config --global user.name "Prettier Action" + git config --global user.name "GitHub Action" } _git_changed() {