We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22dabdf commit b6da54fCopy full SHA for b6da54f
1 file changed
.github/workflows/boot-tests-nightly.yml
@@ -23,12 +23,11 @@ jobs:
23
env:
24
BASE_URL: https://stage.foo.redhat.com:1337
25
run: |
26
- echo "Hello"
27
- continue-on-error: true
+ echo "fail"
28
29
- name: Notify Slack on success
30
uses: slackapi/slack-github-action@v2.1.1
31
- if: steps.playwright-tests.outcome == 'success'
+ if: ${{ success() }}
32
with:
33
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
34
webhook-type: incoming-webhook
@@ -52,7 +51,7 @@ jobs:
52
51
53
- name: Notify Slack on failure
54
55
- if: steps.playwright-tests.outcome != 'success'
+ if: ${{ failure() }}
56
57
58
0 commit comments