We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbcee0e commit 2be00beCopy full SHA for 2be00be
action.yml
@@ -65,8 +65,10 @@ runs:
65
message="<https://github.com/${{ inputs.repository }}/commit/${{ github.sha }}|$commit_message>"
66
fi
67
sanitized_message=$(echo "$message" | sed "s/'/\\\'/g")
68
+ sanitized_message=$(echo "$sanitized_message" | sed 's/"/\\\"/g')
69
+ sanitized_message=$(echo "$sanitized_message" | sed 's/`/\\\`/g')
70
echo "sanitized_message=$sanitized_message" >> $GITHUB_OUTPUT
-
71
+ echo "message=$message" >> $GITHUB_OUTPUT
72
author=${{ github.event.pusher.name }} # context from `push` trigger
73
author=${author:-${{ github.event.sender.login }}} # context from `workflow_dispatch` trigger
74
echo "author=$author" >> $GITHUB_OUTPUT
0 commit comments