From abf8ddd9780904a45f0c002608b08ab1901c0014 Mon Sep 17 00:00:00 2001 From: Matt Travi Date: Fri, 15 Dec 2023 16:47:07 -0600 Subject: [PATCH] ci(verify): avoid uncancellable workflow https://github.com/semantic-release/.github/issues/19#issuecomment-1800963916 for semantic-release/.github#19 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8c37a306..dd8d238c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -70,7 +70,7 @@ jobs: needs: - test_dev - test_matrix - if: always() + if: ${{ !cancelled() }} steps: - name: All matrix versions passed if: ${{ !(contains(needs.*.result, 'failure')) }}