Skip to content

Commit

Permalink
feat(updatedMessage): add Cancelled to status on slack message
Browse files Browse the repository at this point in the history
  • Loading branch information
wimvdputten committed Sep 25, 2024
1 parent bfe5ffd commit dca9fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/notify-slack-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
"elements": [
{
"type": "plain_text",
"text": "${{ inputs.result == 'success' && 'Success' || 'Failure' }} after ${{ env.parsed_time }}",
"text": "${{ inputs.result == 'success' && 'Success' || inputs.result == 'cancelled' && 'Cancelled' || 'Failure' }} after ${{ env.parsed_time }}",
"emoji": true
}
]
Expand Down

0 comments on commit dca9fcf

Please sign in to comment.