From 4104b205bf715421514790c9584f1a4cd976c81a Mon Sep 17 00:00:00 2001 From: tchemn <37881670+tchemn@users.noreply.github.com> Date: Wed, 23 Jun 2021 17:23:51 +0200 Subject: [PATCH] debugging git log command --- entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 77e9d44..41d0d20 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -4,5 +4,6 @@ set -eux cd "$GITHUB_WORKSPACE" -CONTENT=$(git log --oneline --decorate $INPUT_BASE_REF'..'$INPUT_HEAD_REF --format=%B -n 1) +CONTENT=$(git log) +#CONTENT=$(git log --oneline --decorate $INPUT_BASE_REF'..'$INPUT_HEAD_REF --format=%B -n 1) echo ::set-output name=changelog::$CONTENT