-
Notifications
You must be signed in to change notification settings - Fork 3
/
renovate.json
129 lines (129 loc) · 4.3 KB
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", "schedule:earlyMondays"],
"branchPrefix": "renovate-",
"commitMessageAction": "Renovate Update",
"labels": ["Dependencies", "Renovate"],
"branchConcurrentLimit": 5,
"regexManagers": [
{
"fileMatch": ["^Dockerfile.*$"],
"matchStrings": ["FROM node:(?<currentValue>.*?)-alpine.*\\n"],
"depNameTemplate": "node",
"datasourceTemplate": "node",
"versioningTemplate": "node"
}
],
"packageRules": [
{
"groupName": "Minor and Patch Updates PHP",
"groupSlug": "all-patch-updates-php",
"labels": ["Dependencies", "Renovate", "PHP"],
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor", "patch"],
"prPriority": 0,
"schedule": ["after 6am and before 9am on Monday"],
"stabilityDays": 3,
"prCreation": "immediate",
"excludePackageNames": ["php"],
"matchLanguages": ["php"]
},
{
"groupName": "Minor and Patch Updates Node",
"groupSlug": "all-patch-updates-node",
"labels": ["Dependencies", "Renovate", "Node"],
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor", "patch"],
"prPriority": 0,
"schedule": ["after 6am and before 9am on Monday"],
"stabilityDays": 3,
"prCreation": "immediate",
"matchLanguages": ["node"]
},
{
"groupName": "Minor and Patch Updates Docker",
"groupSlug": "all-patch-updates-docker",
"labels": ["Dependencies", "Renovate", "Docker"],
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor", "patch"],
"prPriority": 0,
"schedule": ["after 6am and before 9am on Monday"],
"stabilityDays": 3,
"prCreation": "immediate",
"matchLanguages": ["docker"]
},
{
"groupName": "Minor and Patch Updates Python",
"groupSlug": "all-patch-updates-python",
"labels": ["Dependencies", "Renovate", "Python"],
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor", "patch"],
"prPriority": 0,
"schedule": ["after 6am and before 9am on Monday"],
"stabilityDays": 3,
"prCreation": "immediate",
"matchLanguages": ["python"]
},
{
"groupName": "Minor and Patch Updates Golang",
"groupSlug": "all-patch-updates-golang",
"labels": ["Dependencies", "Renovate", "Golang"],
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor", "patch"],
"prPriority": 0,
"schedule": ["after 6am and before 9am on Monday"],
"stabilityDays": 3,
"prCreation": "immediate",
"matchLanguages": ["golang"]
},
{
"groupName": "GitHub Actions",
"matchPackagePatterns": ["actions/*"],
"automerge": true,
"dependencyDashboardApproval": true,
"prPriority": 0,
"labels": ["Dependencies", "Renovate", "Actions"],
"prBody": "Updates the following GitHub Actions dependencies:\n\n{{#each dependencies}}- {{this.name}}\n{{/each}}",
"schedule": ["after 6am and before 9am on Monday"],
"stabilityDays": 3,
"prCreation": "immediate"
},
{
"groupName": "Disable node updates for dockerfiles",
"matchPackageNames": ["node"],
"matchManagers": ["dockerfile"],
"enabled": false
},
{
"groupName": "Minor Updates",
"groupSlug": "all-minor-updates",
"labels": ["Dependencies", "Renovate", "All-Minor"],
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor"],
"prPriority": -1,
"schedule": ["after 6am and before 9am on Monday"],
"stabilityDays": 3,
"prCreation": "immediate",
"excludePackageNames": ["php"]
}
],
"major": {
"labels": ["Dependencies", "Renovate", "Major"],
"prCreation": "status-success",
"rangeStrategy": "pin",
"prPriority": 1,
"schedule": ["after 6am and before 9am on Monday"]
},
"vulnerabilityAlerts": {
"groupName": "Security Alerts",
"labels": ["Dependencies", "Renovate", "Vulnerability"],
"schedule": ["after 6am and before 9am every weekday"],
"dependencyDashboardApproval": false,
"stabilityDays": 0,
"rangeStrategy": "pin",
"commitMessagePrefix": "[SECURITY]",
"branchTopic": "{{{datasource}}}-{{{depName}}}-vulnerability",
"prCreation": "immediate",
"prPriority": 5
}
}