File tree Expand file tree Collapse file tree 1 file changed +15
-10
lines changed Expand file tree Collapse file tree 1 file changed +15
-10
lines changed Original file line number Diff line number Diff line change 7
7
ignorePresets : [
8
8
':ignoreModulesAndTests' , // needed to keep maven-extension test pom files up-to-date
9
9
] ,
10
- prHourlyLimit : 5 ,
10
+ prHourlyLimit : 5 , // we have a large number of parallel runners
11
+ labels : [
12
+ 'dependencies'
13
+ ] ,
11
14
packageRules : [
12
15
{
13
- // this is to reduce the number of renovate PRs
14
- matchManagers : [
15
- 'github-actions' ,
16
- 'dockerfile' ,
17
- ] ,
18
- extends : [
19
- 'schedule:weekly' ,
20
- ] ,
21
- groupName : 'weekly update' ,
16
+ // reduces the number of Renovate PRs
17
+ // (patch updates are typically non-breaking)
18
+ "groupName" : "all patch versions" ,
19
+ "matchUpdateTypes" : [ "patch" ] ,
20
+ "schedule" : [ "before 8am every weekday" ]
21
+ } ,
22
+ {
23
+ // avoids these Renovate PRs from trickling in throughout the week
24
+ // (consolidating the review process)
25
+ "matchUpdateTypes" : [ "minor" , "major" ] ,
26
+ "schedule" : [ "before 8am on Monday" ]
22
27
} ,
23
28
{
24
29
matchPackageNames : [
You can’t perform that action at this time.
0 commit comments