Skip to content

Commit 52e3f7b

Browse files
Merge pull request #1 from matthiashermsen/cancel-concurrent-pr-workflows-but-latest-one
chore: cancel concurrent PR workflows but latest one
2 parents 42da0e6 + caa3126 commit 52e3f7b

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/lint-pr-title.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
- edited
88
- synchronize
99

10+
concurrency:
11+
group: lint-pr-title-pr-${{ github.event.pull_request.number }}
12+
cancel-in-progress: true
13+
1014
jobs:
1115
lint-pr-title:
1216
name: Lint PR title

.github/workflows/qa.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: QA
22

33
on: pull_request
44

5+
concurrency:
6+
group: qa-pr-${{ github.event.pull_request.number }}
7+
cancel-in-progress: true
8+
59
jobs:
610
qa:
711
name: QA

0 commit comments

Comments
 (0)