From ffe5eb539ed66647f56ce672ca5c46bb4adab83b Mon Sep 17 00:00:00 2001 From: James Ives Date: Sun, 22 Sep 2019 08:27:12 -0400 Subject: [PATCH] Improving the commit message (#31) --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 73a931d6..f8130936 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -80,6 +80,6 @@ fi echo "Deploying to GitHub..." && \ git add -f $FOLDER && \ -git commit -m "Deploying to ${BRANCH} - $(date +"%T")" --quiet && \ +git commit -m "Deploying to ${BRANCH} from ${BASE_BRANCH:-master} ${GITHUB_SHA}" --quiet && \ git push $REPOSITORY_PATH `git subtree split --prefix $FOLDER ${BASE_BRANCH:-master}`:$BRANCH --force && \ echo "Deployment succesful!"