Skip to content

Commit d8ac5f9

Browse files
committed
add concurrency to some of the workflows
1 parent 3983e69 commit d8ac5f9

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.github/workflows/size-labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ jobs:
1111
add-pr-size-label:
1212
runs-on: ubuntu-latest
1313

14+
concurrency:
15+
group: ${{ github.workflow }}-${{github.event.pull_request.number}}
16+
cancel-in-progress: true
17+
1418
steps:
1519
- uses: actions/checkout@v5
1620

.github/workflows/tox-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ jobs:
88
tox-tests:
99
runs-on: ubuntu-latest
1010

11+
concurrency:
12+
group: ${{ github.workflow }}-${{github.event.pull_request.number}}
13+
cancel-in-progress: true
14+
1115
steps:
1216
- uses: actions/checkout@v5
1317

.github/workflows/verify_build_container.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010

11+
concurrency:
12+
group: ${{ github.workflow }}-${{github.event.pull_request.number}}
13+
cancel-in-progress: true
14+
1115
steps:
1216
- name: Checkout Pull Request Branch
1317
uses: actions/checkout@v5

0 commit comments

Comments
 (0)