Skip to content

Commit

Permalink
fix: success not status (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven authored Sep 27, 2024
1 parent 4cf2875 commit 0aaaa49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slack-actions/workflow-notification/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ runs:
"type": "section",
"text": {
"type": "mrkdwn",
"text": "${{ inputs.status == 'failure' && inputs.failure-message || inputs.status-message }}"
"text": "${{ inputs.status == 'failure' && inputs.failure-message || inputs.success-message }}"
}
},
{
Expand Down

0 comments on commit 0aaaa49

Please sign in to comment.