Skip to content

Commit 6d36995

Browse files
committed
fix: Steps use .outcome instead of .result
1 parent 12dc7ef commit 6d36995

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

send-slack-notification/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ runs:
2323

2424
- name: Extract Slack Thread ID into Environment Variable
2525
env:
26-
RETRIEVE_SLACK_THREAD_ID_RESULT: ${{ steps.retrieve-slack-thread-id.result }}
26+
RETRIEVE_SLACK_THREAD_ID_OUTCOME: ${{ steps.retrieve-slack-thread-id.outcome }}
2727
shell: bash
2828
run: |
29-
if [ "$RETRIEVE_SLACK_THREAD_ID_RESULT" = "success" ]; then
29+
if [ "$RETRIEVE_SLACK_THREAD_ID_OUTCOME" = "success" ]; then
3030
echo "SLACK_THREAD_ID=$(cat slack-thread-id)" | tee -a "$GITHUB_ENV"
3131
else
3232
echo "SLACK_THREAD_ID=none" | tee -a "$GITHUB_ENV"

0 commit comments

Comments
 (0)