Skip to content

Commit 4952a7f

Browse files
committed
Avoid workflows canceling each other out
1 parent 84dd6c1 commit 4952a7f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- cron: '0 1 * * *' # nightly build
1414

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

1919
permissions:

.github/workflows/integration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
- cron: '0 1 * * *' # nightly build
1818

1919
concurrency:
20-
group: ${{ github.event.pull_request.number || github.ref }}
20+
group: ${{ github.event.pull_request.number || github.ref }}-integration
2121
cancel-in-progress: true
2222

2323
permissions:

0 commit comments

Comments
 (0)