From 85899e54f3ff9f38d079d5c2dc5fbce4eb5fc2b4 Mon Sep 17 00:00:00 2001 From: Alex Gartner Date: Mon, 2 Dec 2024 08:39:48 -0800 Subject: [PATCH] ci(e2e): use !cancelled() rather than always() (#3229) * ci(e2e): use !cancelled() rather than always() * dummy commit --- .github/workflows/e2e.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index cebedde240..392b5e3bdf 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -104,7 +104,7 @@ jobs: matrix-conditionals: needs: build-zetanode - if: always() + if: ${{ !cancelled() }} runs-on: ubuntu-22.04 env: GH_TOKEN: ${{ github.token }} @@ -217,7 +217,7 @@ jobs: needs: - build-zetanode - matrix-conditionals - if: always() + if: ${{ !cancelled() }} strategy: fail-fast: false matrix: @@ -281,7 +281,7 @@ jobs: - build-zetanode - matrix-conditionals - e2e - if: always() + if: ${{ !cancelled() }} steps: - name: Send slack message with results uses: actions/github-script@v7