From 0aaaa49782e9028086feb943ec04e03e35e3f813 Mon Sep 17 00:00:00 2001 From: Adam DeHaven <2229946+adamdehaven@users.noreply.github.com> Date: Fri, 27 Sep 2024 13:29:17 -0400 Subject: [PATCH] fix: success not status (#162) --- slack-actions/workflow-notification/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slack-actions/workflow-notification/action.yaml b/slack-actions/workflow-notification/action.yaml index 8337e13f..0e64792c 100644 --- a/slack-actions/workflow-notification/action.yaml +++ b/slack-actions/workflow-notification/action.yaml @@ -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 }}" } }, {