-
Notifications
You must be signed in to change notification settings - Fork 9
/
renovate.json
44 lines (44 loc) · 1.2 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
{
"extends": ["config:best-practices", ":semanticCommits", ":disableRateLimiting"],
"baseBranches": ["develop", "main"],
"packageRules": [
{
"enabled": false,
"matchPackagePatterns": ["*"],
"matchBaseBranches": ["main"]
},
{
"matchPackagePatterns": ["*"],
"matchBaseBranches": ["develop"],
"labels": ["dependencies"],
"bumpVersion": "patch",
"dependencyDashboardApproval": true
},
{
"groupName": "spring",
"groupSlug": "spring",
"matchPackagePatterns": ["org.springframework.*"],
"matchBaseBranches": ["develop"],
"bumpVersion": "minor",
"dependencyDashboardApproval": true
},
{
"groupName": "all minor dependencies",
"groupSlug": "all-minor-patch",
"matchPackagePatterns": ["*"],
"matchBaseBranches": ["develop"],
"matchUpdateTypes": ["minor", "patch"],
"bumpVersion": "patch",
"dependencyDashboardApproval": false
}
],
"vulnerabilityAlerts": {
"enabled": true,
"baseBranches": ["main"],
"addLabels": ["security"],
"bumpVersion": "patch",
"schedule": ["before 5:00am"]
},
"schedule": ["every weekend"],
"timezone": "Europe/Paris"
}