File tree Expand file tree Collapse file tree 2 files changed +25
-3
lines changed
Expand file tree Collapse file tree 2 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 1- name : PR Title Validator
1+ name : Validators
22
33on :
44 pull_request :
2929 if (!match.groups.subject) {
3030 core.setFailed('Missing subject in PR title');
3131 }
32+
33+ renovate :
34+ name : Validate Renovate config
35+ runs-on : ubuntu-latest
36+ steps :
37+ - uses : actions/checkout@v4
38+
39+ - uses : actions/setup-node@v3
40+ with :
41+ node-version-file : .nvmrc
42+
43+ - uses : pnpm/action-setup@v2
44+ name : Install pnpm
45+ id : pnpm-install
46+ with :
47+ run_install : false
48+
49+ - run : pnpm install --global renovate
50+
51+ - name : Validate Renovate config
52+ run : renovate-config-validator
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3- "extends" : [" config:base " ],
3+ "extends" : [" config:recommended " ],
44 "labels" : [" dependency" ],
55 "prConcurrentLimit" : 5 ,
6- "rangeStrategy" : " pin"
6+ "rangeStrategy" : " pin" ,
7+ "schedule" : [" monthly" ]
78}
You can’t perform that action at this time.
0 commit comments