We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d22c31 commit 0c2e867Copy full SHA for 0c2e867
1 file changed
.github/workflows/release-to-slack.yml
@@ -11,7 +11,8 @@ jobs:
11
env:
12
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
13
run: |
14
- curl -sf -X POST -H 'Content-type: application/json' --data '{
15
- "text": "*New release: ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}*
16
-${{ github.event.release.html_url }}"
17
- }' "$SLACK_WEBHOOK_URL"
+ curl -sf -X POST -H 'Content-type: application/json' \
+ --data '{
+ "text": "*New release: ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}*\n${{ github.event.release.html_url }}"
+ }' \
18
+ "$SLACK_WEBHOOK_URL"
0 commit comments