Skip to content

Commit

Permalink
[CI] Fix for main CI getting cancelled post-merge (#1504)
Browse files Browse the repository at this point in the history
---------

Signed-off-by: Dan Hoeflinger <dan.hoeflinger@intel.com>
  • Loading branch information
danhoeflinger authored Apr 16, 2024
1 parent 2a4a503 commit 4f8000b
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 @@ -24,7 +24,7 @@ env:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
cancel-in-progress: ${{ !contains(github.ref, 'refs/heads/main') }}

jobs:
clang-format:
Expand Down

0 comments on commit 4f8000b

Please sign in to comment.