Skip to content

Commit 7bff138

Browse files
committed
Add concurrency, exclude already required check
1 parent 1599f41 commit 7bff138

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/all-green.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
branches:
66
- main
77

8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
812
jobs:
913
all-green:
1014
runs-on: ubuntu-latest
@@ -14,7 +18,13 @@ jobs:
1418
steps:
1519
- uses: wechuli/allcheckspassed@e22f45a4f25f4cf821d1273705ac233355400db1
1620
with:
17-
delay: 5 # wait for this delay before starting
21+
delay: 10 # wait for this delay before starting
1822
polling_interval: 1 # after a failure, how long do it wait before checking again
1923
retries: 60 # how many retries before stopping
20-
checks_exclude: 'Bootstrap import analysis'
24+
checks_exclude: 'Bootstrap import analysis,require-checklist,Validate changelog'
25+
26+
# Why some checks are excluded?
27+
#
28+
# - Bootstrap import analysis: TO BE ADDED (Success rate of 88% as of 2025-04-17)
29+
# - require-checklist: this job is triggered by a change on PR description, and already explcititly required
30+
# - Validate changelog: this job is triggered by a change on labels, and already explcititly required

0 commit comments

Comments
 (0)