We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3cd442 commit 4a6b0b3Copy full SHA for 4a6b0b3
.github/workflows/issue_comment.yml
@@ -17,7 +17,7 @@ jobs:
17
COMMENT_URL: ${{ github.event.comment.html_url }}
18
USER: ${{ github.event.comment.user.login }}
19
shell: bash
20
- run: echo $BODY | xargs -I {} curl -s POST "$WEBHOOK_URL" -H "Content-Type:application/json" --data '{"body":"{}", "issue":"'$COMMENT_URL'", "user":"'$USER'"}'
+ run: echo $BODY | sed "s/\\\n/. /g; s/\\\r//g; s/[^a-zA-Z0-9 &().,:]//g" | xargs -I {} curl -s POST "$WEBHOOK_URL" -H "Content-Type:application/json" --data '{"body":"{}", "issue":"'$COMMENT_URL'", "user":"'$USER'"}'
21
22
adjust-labels:
23
runs-on: ubuntu-latest
0 commit comments