From b8e4515179930691d0d9613452cd345e97652331 Mon Sep 17 00:00:00 2001 From: cswimr Date: Mon, 21 Oct 2024 14:06:15 -0400 Subject: [PATCH] =?UTF-8?q?`'%q'`=20not=20`'%a'`=20=F0=9F=98=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .forgejo/workflows/actions.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/actions.yaml b/.forgejo/workflows/actions.yaml index 19f0d7f..294fe91 100644 --- a/.forgejo/workflows/actions.yaml +++ b/.forgejo/workflows/actions.yaml @@ -130,7 +130,7 @@ jobs: shell: bash run: | COMMIT_MESSAGE="${{ steps.extract_commit_message.outputs.message }}" - ESCAPED_COMMIT_MESSAGE=$(printf '%a' "$COMMIT_MESSAGE") + ESCAPED_COMMIT_MESSAGE=$(printf '%q' "$COMMIT_MESSAGE") OUTPUT="$(python .forgejo/workflows/scripts/message.py '$ESCAPED_COMMIT_MESSAGE')" if [ "$OUTPUT" = "Usage: python message.py " ]; then echo "Called without commit message!"