From c18a1d24371e43bcee44441f3d17866f00989479 Mon Sep 17 00:00:00 2001 From: Alex Gartner Date: Mon, 29 Jul 2024 09:26:36 -0700 Subject: [PATCH] fix(ci): correct slack conditional comparison --- .github/workflows/e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index bcf118eb68..652f7886c4 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -179,7 +179,7 @@ jobs: steps: - name: Send slack message with results uses: actions/github-script@v7 - if: ${{ github.event_name == 'schedule' || (github.event_name == 'push' && needs.e2e.result == 'failed') }} + if: ${{ github.event_name == 'schedule' || (github.event_name == 'push' && needs.e2e.result == 'failure') }} env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_CI_ALERTS }} with: