Skip to content

Commit

Permalink
[ci] fix concurrency syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Jan 3, 2024
1 parent f232416 commit 494b153
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ on:
concurrency:
group: >-
${{
github.workflow + '-' + github.ref +
(github.event_name == 'pull_request' || github.event_name == 'push' ? '' : '-all')
github.event_name == 'pull_request' || github.event_name == 'push'
? github.workflow + '-' + github.ref
: github.workflow + '-' + github.ref + '-all'
}}
cancel-in-progress: true

Expand Down

0 comments on commit 494b153

Please sign in to comment.