From c72d13fcba04301968c6d9ca679f032f43eb2438 Mon Sep 17 00:00:00 2001 From: narodnik Date: Wed, 17 Mar 2021 15:41:04 +0100 Subject: [PATCH] try newline fix --- .github/workflows/matrix-commit-message.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/matrix-commit-message.yml b/.github/workflows/matrix-commit-message.yml index 05ac1b320..a0ef973bd 100644 --- a/.github/workflows/matrix-commit-message.yml +++ b/.github/workflows/matrix-commit-message.yml @@ -11,7 +11,7 @@ jobs: ALL_MSGS="" for i in ${{ join(github.event.commits.*.id, ' ') }}; do MSG=$(git --no-pager show -s --format='%h %an: %s' $i) - ALL_MSGS="$ALL_MSGS$MSG\n" + ALL_MSGS="$ALL_MSGS$MSG"$'\n' done echo "::set-output name=COMMIT_MESSAGE::$ALL_MSGS" id: commit-message