Skip to content

Commit c183146

Browse files
committed
[ci] remove compound conditional in concurrency ternary
1 parent e40ec28 commit c183146

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
workflow_dispatch:
1111

1212
concurrency:
13-
group: ${{ github.workflow }}-${{ github.ref }}${{(github.event_name == 'workflow_dispatch' || github.event_name == 'schedule') && '' || '-all' }}
13+
group: ${{ github.workflow }}-${{ github.ref }}${{ github.event_name == 'workflow_dispatch' && '-all' || '' }}${{ github.event_name == 'schedule' && '-all' || '' }}
1414
cancel-in-progress: true
1515

1616
jobs:

0 commit comments

Comments
 (0)