Skip to content

Commit 115f44c

Browse files
authored
chore(ci): change condition for success messages
Instead of checking if anything succeeded, check if nothing failed.
1 parent 2bebbd7 commit 115f44c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/stencil-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ jobs:
229229
send-success-messages:
230230
needs: [test-core-clean-build, test-core-lint, test-core-spec, verify-screenshots, verify-test-vue-e2e, verify-test-angular-e2e, verify-test-react-router-e2e, verify-test-react-e2e]
231231
runs-on: ubuntu-latest
232-
if: ${{ !cancelled() && contains(needs.*.result, 'success') }}
232+
if: ${{ !cancelled() && !contains(needs.*.result, 'failure') }}
233233
steps:
234234
- name: Notify success on Discord
235235
run: |

0 commit comments

Comments
 (0)