From 115f44c09461b42e0ed86c1363fd565b5f9fc6e3 Mon Sep 17 00:00:00 2001 From: OS-jacobbell <228905018+OS-jacobbell@users.noreply.github.com> Date: Wed, 19 Nov 2025 07:25:49 -0700 Subject: [PATCH] chore(ci): change condition for success messages Instead of checking if anything succeeded, check if nothing failed. --- .github/workflows/stencil-nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stencil-nightly.yml b/.github/workflows/stencil-nightly.yml index d39fdcdf649..653d4060637 100644 --- a/.github/workflows/stencil-nightly.yml +++ b/.github/workflows/stencil-nightly.yml @@ -229,7 +229,7 @@ jobs: send-success-messages: 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] runs-on: ubuntu-latest - if: ${{ !cancelled() && contains(needs.*.result, 'success') }} + if: ${{ !cancelled() && !contains(needs.*.result, 'failure') }} steps: - name: Notify success on Discord run: |