We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12dc7ef commit 6d36995Copy full SHA for 6d36995
send-slack-notification/action.yaml
@@ -23,10 +23,10 @@ runs:
23
24
- name: Extract Slack Thread ID into Environment Variable
25
env:
26
- RETRIEVE_SLACK_THREAD_ID_RESULT: ${{ steps.retrieve-slack-thread-id.result }}
+ RETRIEVE_SLACK_THREAD_ID_OUTCOME: ${{ steps.retrieve-slack-thread-id.outcome }}
27
shell: bash
28
run: |
29
- if [ "$RETRIEVE_SLACK_THREAD_ID_RESULT" = "success" ]; then
+ if [ "$RETRIEVE_SLACK_THREAD_ID_OUTCOME" = "success" ]; then
30
echo "SLACK_THREAD_ID=$(cat slack-thread-id)" | tee -a "$GITHUB_ENV"
31
else
32
echo "SLACK_THREAD_ID=none" | tee -a "$GITHUB_ENV"
0 commit comments