Update Slack webhook step (#484)

This _should_ fix it
This commit is contained in:
Eric Gustin 2025-07-11 18:14:05 -07:00 committed by GitHub
parent 40cdf2018d
commit b1e3c334f0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -152,7 +152,7 @@ jobs:
webhook-type: webhook-trigger
payload: |
{
"status": "${{ (steps.pypi-publish.outcome == 'failure' || steps.pypi-publish.outcome == 'failure') && 'Failed' || 'Success' }}",
"status": "${{ job.status == 'failure' || job.status == 'cancelled' && 'Failed' || 'Success' }}",
"package": "${{ env.PACKAGE_NAME }}",
"version": "${{ env.VERSION }}",
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"