Skip to content

Commit 938fdfd

Browse files
committed
1 parent 1641748 commit 938fdfd

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

.github/workflows/govulncheck.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ on:
1010
- v*
1111
schedule:
1212
- cron: 2 2 * * *
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
15+
cancel-in-progress: true
1316
jobs:
1417
govulncheck:
1518
runs-on: ubuntu-22.04

.github/workflows/installer.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
push:
77
branches:
88
- master
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
cancel-in-progress: true
912
env:
1013
SHA: ${{ github.event_name == 'push' && github.sha || github.event.pull_request.head.sha }}
1114
jobs:

.github/workflows/lock-threads.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ permissions:
1010
pull-requests: write
1111

1212
concurrency:
13-
group: lock-threads
13+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
14+
cancel-in-progress: true
1415

1516
jobs:
1617
action:

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ on:
1010
- v*
1111
schedule:
1212
- cron: 32 2 * * *
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
15+
cancel-in-progress: true
1316
env:
1417
ACTIONLINT_VERSION: 1.7.3 # https://github.com/rhysd/actionlint/releases
1518
AGE_VERSION: 1.2.0 # https://github.com/FiloSottile/age/releases

0 commit comments

Comments
 (0)