Skip to content

Commit

Permalink
Fix CI cancel logic error. (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Sep 24, 2023
1 parent 2f4160f commit 489a211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 489a211

Please sign in to comment.