Skip to content

Commit 494b153

Browse files
committed
[ci] fix concurrency syntax
1 parent f232416 commit 494b153

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ on:
1212
concurrency:
1313
group: >-
1414
${{
15-
github.workflow + '-' + github.ref +
16-
(github.event_name == 'pull_request' || github.event_name == 'push' ? '' : '-all')
15+
github.event_name == 'pull_request' || github.event_name == 'push'
16+
? github.workflow + '-' + github.ref
17+
: github.workflow + '-' + github.ref + '-all'
1718
}}
1819
cancel-in-progress: true
1920

0 commit comments

Comments
 (0)