Skip to content

Commit 5171e7f

Browse files
authored
Merge pull request #73 from Itxaka/concurrency
2 parents 105f8de + 2c0bb11 commit 5171e7f

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

.github/workflows/image.yml

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
tags:
99
- '*'
1010

11+
concurrency:
12+
group: image-${{ github.ref || github.head_ref }}
13+
cancel-in-progress: true
14+
1115
jobs:
1216
docker:
1317
runs-on: ubuntu-latest

.github/workflows/lint.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ on:
66
pull_request:
77
paths:
88
- '**'
9+
10+
concurrency:
11+
group: lint-${{ github.ref || github.head_ref }}
12+
cancel-in-progress: true
13+
914
env:
1015
FORCE_COLOR: 1
1116
jobs:

.github/workflows/test.yml

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
- '*'
1010
pull_request:
1111

12+
concurrency:
13+
group: test-${{ github.ref || github.head_ref }}
14+
cancel-in-progress: true
15+
1216
jobs:
1317
docker:
1418
runs-on: ubuntu-latest

.github/workflows/tool-image.yml

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
- master
88
tags:
99
- '*'
10+
concurrency:
11+
group: tool-image-${{ github.ref || github.head_ref }}
12+
cancel-in-progress: true
1013

1114
jobs:
1215
docker:

0 commit comments

Comments
 (0)