Skip to content

Commit ce5e994

Browse files
committed
ci: missing concurrency check
1 parent 1168e59 commit ce5e994

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: build
22

33
concurrency:
4-
group: build-${{ github.ref }}
4+
group: ${{ github.workflow }}-${{ github.ref }}
55
cancel-in-progress: true
66

77
on:
@@ -13,8 +13,6 @@ on:
1313
paths-ignore:
1414
- '**.md'
1515
pull_request:
16-
branches:
17-
- 'master'
1816
paths-ignore:
1917
- '**.md'
2018

.github/workflows/labels.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: labels
22

3+
concurrency:
4+
group: ${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
37
on:
48
push:
59
branches:

.github/workflows/test-edge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: test-edge
22

33
concurrency:
4-
group: test-edge-${{ github.ref }}
4+
group: ${{ github.workflow }}-${{ github.ref }}
55
cancel-in-progress: true
66

77
on:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: test
22

33
concurrency:
4-
group: test-${{ github.ref }}
4+
group: ${{ github.workflow }}-${{ github.ref }}
55
cancel-in-progress: true
66

77
on:

0 commit comments

Comments
 (0)