diff --git a/.github/workflows/release-notification.yml b/.github/workflows/release-notification.yml index 459a282551a7b..dfc1a0cc222ca 100644 --- a/.github/workflows/release-notification.yml +++ b/.github/workflows/release-notification.yml @@ -18,7 +18,7 @@ jobs: env: INCOMING_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} with: - text: "send-to-slack" + text: "New release published!" blocks: | [ { @@ -39,7 +39,7 @@ jobs: "type": "section", "text": { "type": "mrkdwn", - "text": ${{ toJSON(github.event.release.body) }} + "text": "${{ github.event.release.body }}" } }, { @@ -49,4 +49,4 @@ jobs: "text": "${{ github.event.release.html_url }}" } } - ] \ No newline at end of file + ]