Skip to content

Commit 2b1839c

Browse files
committed
fix(ci): prevent execution of jobs if the workflow is cancelled
1 parent e7e8fdb commit 2b1839c

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
timeout-minutes: 60
5252
runs-on: ubuntu-latest
5353
needs: critical-test-run
54+
if: ${{ !cancelled() }}
5455
strategy:
5556
fail-fast: false
5657
matrix:
@@ -85,6 +86,7 @@ jobs:
8586
needs:
8687
- critical-test-run
8788
- regression-test-run
89+
if: ${{ !cancelled() }}
8890
strategy:
8991
fail-fast: false
9092
matrix:

0 commit comments

Comments
 (0)