Skip to content

Commit

Permalink
fix: Use the right url to view the release
Browse files Browse the repository at this point in the history
Use `html_url` instead of `url` so that the release slack
notification contains the url that can be used to navigate
to the release page.

Signed-off-by: Sudan Landge <[email protected]>
  • Loading branch information
Sudan Landge authored and bchalios committed Dec 21, 2023
1 parent b49d9fa commit db29fc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/send_release_notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ jobs:
run: |
curl -X POST ${{ secrets.SLACK_RELEASE_NOTIFICATION_WEBHOOK }} \
-H 'Content-Type: application/json' \
-d '{ "GITHUB_RELEASE_URL": "${{ github.event.release.url }}",
-d '{ "GITHUB_RELEASE_URL": "${{ github.event.release.html_url }}",
"GITHUB_RELEASE_TAG": "${{ github.event.release.tag_name }}"}'

0 comments on commit db29fc2

Please sign in to comment.