Skip to content

Commit bbc9cca

Browse files
committed
ci: more concurrency groups
1 parent bbb319b commit bbc9cca

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/integrationtest.yml

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ name: "Integration Test"
1111
# Run on every push (tag, branch) and pull_request
1212
on: [ pull_request, push, merge_group ]
1313

14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
16+
cancel-in-progress: true
17+
1418
env:
1519
CARGO_TERM_COLOR: always
1620

.github/workflows/qa.yml

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: QA
22

33
on: [pull_request, push, merge_group]
44

5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
7+
cancel-in-progress: true
8+
59
jobs:
610
spellcheck:
711
name: Spellcheck

0 commit comments

Comments
 (0)