-
Notifications
You must be signed in to change notification settings - Fork 4
/
renovate.json
176 lines (176 loc) · 4.96 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"branchPrefix": "renovate-",
"commitMessageAction": "Renovate Update",
"labels": [
"Dependencies",
"Renovate"
],
"packageRules": [
{
"description": "Terraform: bundle all updates together",
"labels": ["devDependencies", "Renovate", "Terraform"],
"groupName": "Terraform",
"matchUpdateTypes": ["minor", "patch"],
"matchManagers": ["terraform"]
},
{
"groupName": "Patch & Minor Updates",
"groupSlug": "all-minor-patch-updates",
"labels": [
"Dependencies",
"Renovate"
],
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"prCreation": "immediate",
"prPriority": 0,
"stabilityDays": 3,
"excludePackageNames": [
"php"
]
},
{
"description": [
"Github Actions: bundle all updates together"
],
"groupName": "GitHub Actions",
"matchPackagePatterns": [
"actions/*"
],
"automerge": true,
"dependencyDashboardApproval": true,
"labels": [
"Dependencies",
"Renovate"
],
"prTitle": "chore(deps): update GitHub Actions",
"prBody": "Updates the following GitHub Actions dependencies:\n\n{{#each dependencies}}- {{this.name}}\n{{/each}}",
"prCreation": "immediate",
"schedule": [
"after 6am and before 9am on Monday"
],
"stabilityDays": 3,
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"description": [
"Docker: group all updates together"
],
"labels": ["Dependencies", "Renovate", "Docker"],
"groupName": "Docker Updates",
"matchUpdateTypes": ["minor", "patch"],
"matchManagers": ["dockerfile", "docker-compose"],
"automerge": false
},
{
"description": [
"Golang: group all updates together"
],
"labels": ["Dependencies", "Renovate", "Golang"],
"groupName": "Golang Updates",
"matchUpdateTypes": ["minor", "patch"],
"matchManagers": ["gomod"],
"automerge": false
},
{
"description": [
"npm minor and patch updates (stable for 3 days)",
"These might be automerged once we're comfortable with Renovate"
],
"automerge": false,
"groupName": "minor and patch updates (npm)",
"groupSlug": "all-minor-patch-updates-npm",
"labels": ["Dependencies", "Renovate", "nodejs"],
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"],
"matchFiles": [
"package.json",
"service-front/package.json"
],
"prCreation": "immediate",
"prPriority": 4,
"stabilityDays": 3
},
{
"description": ["AWS SDK"],
"labels": ["Renovate", "AWS SDK"],
"matchUpdateTypes": ["minor", "patch"],
"matchManagers": ["composer"],
"matchPackageNames": ["aws/aws-sdk-php"],
"extends": ["schedule:monthly"],
"automerge": false
},
{
"description": [
"front composer minor and patch updates (PHP 8.2, stable for 3 days)",
"These might be automerged once we're comfortable with Renovate"
],
"automerge": false,
"groupName": "front minor and patch updates (PHP 8.2)",
"groupSlug": "front-minor-patch-updates-php82",
"labels": ["Dependencies", "Renovate", "PHP 8.2"],
"matchManagers": ["composer"],
"matchUpdateTypes": ["minor", "patch"],
"excludePackageNames": ["php"],
"matchFiles": [
"service-front/composer.json"
],
"prCreation": "immediate",
"prPriority": 4,
"stabilityDays": 3
},
{
"description": [
"api composer minor and patch updates (PHP 8.2, stable for 3 days)",
"These might be automerged once we're comfortable with Renovate"
],
"automerge": false,
"groupName": "api minor and patch updates (PHP 8.2)",
"groupSlug": "api-minor-patch-updates-php82",
"labels": ["Dependencies", "Renovate", "PHP 8.2"],
"matchManagers": ["composer"],
"matchUpdateTypes": ["minor", "patch"],
"excludePackageNames": ["php"],
"matchFiles": [
"service-api/composer.json"
],
"prCreation": "immediate",
"prPriority": 4,
"stabilityDays": 3
}
],
"major": {
"labels": [
"Dependencies",
"Renovate"
],
"prCreation": "immediate",
"rangeStrategy": "pin"
},
"branchConcurrentLimit": 5,
"prConcurrentLimit": 1,
"prHourlyLimit": 1,
"vulnerabilityAlerts": {
"groupName": "Security Alerts",
"labels": [
"Dependencies",
"Renovate"
],
"dependencyDashboardApproval": false,
"stabilityDays": 0,
"rangeStrategy": "pin",
"commitMessagePrefix": "[SECURITY]",
"branchTopic": "{{{datasource}}}-{{{depName}}}-vulnerability",
"prCreation": "immediate"
}
}