We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c2b094 commit 18bfb4eCopy full SHA for 18bfb4e
.github/workflows/slack-notify.yml
@@ -66,7 +66,7 @@ jobs:
66
MERGED=$(jq -r '.pull_request.merged' event.json)
67
68
URL=$(jq -r '.pull_request.html_url' event.json)
69
- MESSAGE="*$PR_TITLE*\n$PR_BODY"
+ MESSAGE=$(printf "*%s*\n%s" "$PR_TITLE" "$PR_BODY")
70
71
if [ "$MERGED" == "true" ]; then
72
EMOJI="🎉"; TITLE="Merged PR #$PR_NUM"; COLOR="#6f42c1"
0 commit comments