Skip to content

Commit

Permalink
fix workflow slack msg (#12695)
Browse files Browse the repository at this point in the history
* fix wf slack msg

* fix other workflows

* lose double-quotes
  • Loading branch information
aalves08 authored Nov 27, 2024
1 parent 384d959 commit 650a104
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-extension-workflows-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,4 @@ jobs:
echo "message sent: $MSG"
curl -X POST -H 'Content-type: application/json; charset=utf-8' \
--data '{ "branch": "master", "message": $MSG, "workflow_run": ${{ github.run_id }} }' $SLACK_WEBHOOK
--data "{\"branch\": \"master\", \"message\": \"$MSG\", \"workflow_run\": ${{ github.run_id }} }" $SLACK_WEBHOOK
2 changes: 1 addition & 1 deletion .github/workflows/test-extension-workflows-release-2.8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,4 @@ jobs:
echo "message sent: $MSG"
curl -X POST -H 'Content-type: application/json; charset=utf-8' \
--data '{ "branch": "release-2.8", "message": $MSG, "workflow_run": ${{ github.run_id }} }' $SLACK_WEBHOOK
--data "{\"branch\": \"release-2.8\", \"message\": \"$MSG\", \"workflow_run\": ${{ github.run_id }} }" $SLACK_WEBHOOK
2 changes: 1 addition & 1 deletion .github/workflows/test-extension-workflows-release-2.9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,4 @@ jobs:
echo "message sent: $MSG"
curl -X POST -H 'Content-type: application/json; charset=utf-8' \
--data '{ "branch": "release-2.9", "message": $MSG, "workflow_run": ${{ github.run_id }} }' $SLACK_WEBHOOK
--data "{\"branch\": \"release-2.9\", \"message\": \"$MSG\", \"workflow_run\": ${{ github.run_id }} }" $SLACK_WEBHOOK

0 comments on commit 650a104

Please sign in to comment.