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 abb1d39 commit b1ae1a6Copy full SHA for b1ae1a6
.github/workflows/test.yml
@@ -105,7 +105,9 @@ jobs:
105
status: ${{ job.status }}
106
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
107
108
- notify:
+ all-pass:
109
+ if: always()
110
+
111
needs:
112
- test
113
- rubocop
@@ -114,10 +116,7 @@ jobs:
114
116
runs-on: ubuntu-latest
115
117
118
steps:
- - name: Slack Notification (success)
- uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
119
- if: always()
120
- continue-on-error: true
+ - name: check dependent jobs
+ uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
121
with:
122
- status: ${{ job.status }}
123
- webhook-url: ${{ secrets.SLACK_WEBHOOK }}
+ jobs: ${{ toJSON(needs) }}
0 commit comments