-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json5
62 lines (56 loc) · 1.33 KB
/
renovate.json5
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
{
// This configuration extends the following presets. See
// https://docs.renovatebot.com/key-concepts/presets/ for more details.
"extends": [
"config:recommended",
],
// Labels to add to all PRs
"addLabels": [
"dependencies",
"renovate",
],
// Let Renovate update dependencies in branches, without PR,
// for updates which have automerge=true.
"automergeType": "branch",
// Show CVEs that have no fixes in the dependency dashboard issue
"dependencyDashboardOSVVulnerabilitySummary": "unresolved",
// Relevant to Major version updates
"major": {
// Major updates need manual approval from the dependency dashboard issue
// before PRs are created.
"dependencyDashboardApproval": true,
},
// Fix vulnerabilities known to https://osv.dev/
"osvVulnerabilityAlerts": true,
"packageRules": [
// Merge certain updates automatically
{
"automerge": true,
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest",
]
},
// Add golang label where applicable
{
"addLabels": [
"golang",
],
"matchCategories": [
"golang",
]
},
// Add ci label where applicable
{
"addLabels": [
"ci",
],
"matchCategories": [
"ci",
]
}
],
"pinDigests": true,
}