From 368e85ce7754084013b1193606c0c5bc8491d02f Mon Sep 17 00:00:00 2001 From: John Sirois Date: Sat, 23 Sep 2023 18:03:56 -0700 Subject: [PATCH] Fix CI cancel logic error. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95b4b60..eb79a0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ defaults: concurrency: group: CI-${{ github.ref }} # Queue on all branches and tags, but only cancel overlapping PR burns. - cancel-in-progress: ${{ github.ref != 'refs/heads/main' || !startsWith(github.ref, 'refs/tags/') }} + cancel-in-progress: ${{ github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/') }} jobs: org-check: name: Check GitHub Organization