Skip to content

Commit 9d20005

Browse files
committed
fix(ci): separate concurrency class for all push triggers
1 parent 8317def commit 9d20005

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- cron: '0 22 * * *'
1414

1515
concurrency:
16-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
16+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
1717
cancel-in-progress: true
1818

1919
jobs:

.github/workflows/validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
workflow_dispatch:
99

1010
concurrency:
11-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
1212
cancel-in-progress: true
1313

1414
jobs:

0 commit comments

Comments
 (0)