Skip to content

Commit 74ec007

Browse files
committed
add missing concurrency settings for workflows
1 parent 4bbf984 commit 74ec007

File tree

9 files changed

+36
-0
lines changed

9 files changed

+36
-0
lines changed

.github/workflows/check-devnet.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
pull_request:
55
branches: [devnet, devnet-ready]
66
types: [labeled, unlabeled, synchronize, opened]
7+
8+
concurrency:
9+
group: check-devnet-${{ github.ref }}
10+
cancel-in-progress: true
711

812
env:
913
CARGO_TERM_COLOR: always

.github/workflows/check-docker.yml

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

33
on:
44
pull_request:
5+
6+
concurrency:
7+
group: check-docker-${{ github.ref }}
8+
cancel-in-progress: true
59

610
jobs:
711
build:

.github/workflows/check-finney.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
pull_request:
55
branches: [finney, main]
66
types: [labeled, unlabeled, synchronize, opened]
7+
8+
concurrency:
9+
group: check-finney-${{ github.ref }}
10+
cancel-in-progress: true
711

812
env:
913
CARGO_TERM_COLOR: always

.github/workflows/check-testnet.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
branches: [testnet, testnet-ready]
66
types: [labeled, unlabeled, synchronize, opened]
77

8+
concurrency:
9+
group: check-testnet-${{ github.ref }}
10+
cancel-in-progress: true
11+
812
env:
913
CARGO_TERM_COLOR: always
1014

.github/workflows/docker-localnet.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ on:
1515
- main
1616
- testnet
1717
- devnet
18+
19+
concurrency:
20+
group: docker-localnet-${{ github.ref }}
21+
cancel-in-progress: true
1822

1923
permissions:
2024
contents: read

.github/workflows/docker.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ on:
1414
- devnet-ready
1515
- devnet
1616
- testnet
17+
18+
concurrency:
19+
group: docker-${{ github.ref }}
20+
cancel-in-progress: true
1721

1822
permissions:
1923
contents: read

.github/workflows/evm-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
required: false
1212
default: ""
1313

14+
concurrency:
15+
group: evm-tests-${{ github.ref }}
16+
cancel-in-progress: true
17+
1418
env:
1519
CARGO_TERM_COLOR: always
1620
VERBOSE: ${{ github.events.input.verbose }}

.github/workflows/rustdocs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
- main
77
workflow_dispatch:
88

9+
concurrency:
10+
group: rustdocs-${{ github.ref }}
11+
cancel-in-progress: true
12+
913
env:
1014
CARGO_TERM_COLOR: always
1115

.github/workflows/try-runtime.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Try Runtime
33
on:
44
pull_request:
55

6+
concurrency:
7+
group: try-runtime-${{ github.ref }}
8+
cancel-in-progress: true
9+
610
env:
711
CARGO_TERM_COLOR: always
812

0 commit comments

Comments
 (0)