File tree 2 files changed +25
-3
lines changed
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
2
2
3
3
on :
4
4
pull_request :
29
29
if (!match.groups.subject) {
30
30
core.setFailed('Missing subject in PR title');
31
31
}
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 1
1
{
2
2
"$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3
- "extends" : [" config:base " ],
3
+ "extends" : [" config:recommended " ],
4
4
"labels" : [" dependency" ],
5
5
"prConcurrentLimit" : 5 ,
6
- "rangeStrategy" : " pin"
6
+ "rangeStrategy" : " pin" ,
7
+ "schedule" : [" monthly" ]
7
8
}
You can’t perform that action at this time.
0 commit comments