Skip to content

Commit

Permalink
ci(e2e): use !cancelled() rather than always() (#3229)
Browse files Browse the repository at this point in the history
* ci(e2e): use !cancelled() rather than always()

* dummy commit
  • Loading branch information
gartnera authored Dec 2, 2024
1 parent a834bf0 commit 85899e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
matrix-conditionals:
needs: build-zetanode
if: always()
if: ${{ !cancelled() }}
runs-on: ubuntu-22.04
env:
GH_TOKEN: ${{ github.token }}
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
needs:
- build-zetanode
- matrix-conditionals
if: always()
if: ${{ !cancelled() }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 85899e5

Please sign in to comment.