Skip to content

Commit f64bbea

Browse files
authored
[enhancement] reduce Github Actions runner loading by setting concurrencies (uxlfoundation#2077)
* Update pr-checklist.yml * Update renovate-validation.yml
1 parent 2c73bb8 commit f64bbea

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/pr-checklist.yml

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ on:
2020
pull_request:
2121
types: [opened, edited, synchronize]
2222

23+
concurrency:
24+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref_name }}-${{ github.event.number || github.sha }}
25+
cancel-in-progress: true
26+
2327
jobs:
2428
checklist:
2529
name: Close all checkboxes before moving from draft

.github/workflows/renovate-validation.yml

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ on:
1717
permissions:
1818
contents: read
1919

20+
concurrency:
21+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref_name }}-${{ github.event.number || github.sha }}
22+
cancel-in-progress: true
23+
2024
jobs:
2125
validate:
2226
name: Renovate validation

0 commit comments

Comments
 (0)