File tree 1 file changed +22
-4
lines changed
1 file changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ jobs:
113
113
name : ci-${{ matrix.next-version }}${{ matrix.base-path && '-basePath' || ''}}
114
114
- uses : 47ng/actions-slack-notify@main
115
115
name : Notify on Slack
116
- if : always ()
116
+ if : failure ()
117
117
with :
118
118
status : ${{ job.status }}
119
119
jobName : next@${{ matrix.next-version }}${{ matrix.base-path && ' basePath' || ''}}
@@ -147,7 +147,7 @@ jobs:
147
147
name : ci-react
148
148
- uses : 47ng/actions-slack-notify@main
149
149
name : Notify on Slack
150
- if : always ()
150
+ if : failure ()
151
151
with :
152
152
status : ${{ job.status }}
153
153
jobName : react
@@ -187,7 +187,7 @@ jobs:
187
187
name : ci-react-router-${{ matrix.react-router-version }}
188
188
- uses : 47ng/actions-slack-notify@main
189
189
name : Notify on Slack
190
- if : always ()
190
+ if : failure ()
191
191
with :
192
192
status : ${{ job.status }}
193
193
jobName : react-router-${{ matrix.react-router-version }}
@@ -221,13 +221,31 @@ jobs:
221
221
name : ci-remix
222
222
- uses : 47ng/actions-slack-notify@main
223
223
name : Notify on Slack
224
- if : always ()
224
+ if : failure ()
225
225
with :
226
226
status : ${{ job.status }}
227
227
jobName : remix
228
228
env :
229
229
SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
230
230
231
+ ci-notify :
232
+ name : Notify on Slack
233
+ runs-on : ubuntu-24.04
234
+ needs :
235
+ - lint
236
+ - ci-core
237
+ - e2e-next
238
+ - e2e-react
239
+ - e2e-react-router
240
+ - e2e-remix
241
+ steps :
242
+ - uses : 47ng/actions-slack-notify@main
243
+ with :
244
+ status : ${{ job.status }}
245
+ jobName : Continuous Integration
246
+ env :
247
+ SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
248
+
231
249
cd :
232
250
name : Deployment
233
251
runs-on : ubuntu-24.04
You can’t perform that action at this time.
0 commit comments