-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
105 lines (105 loc) · 2.31 KB
/
renovate.json
File metadata and controls
105 lines (105 loc) · 2.31 KB
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
"mergeConfidence:all-badges"
],
"configMigration": true,
"dependencyDashboardAutoclose": true,
"dependencyDashboardLabels": [
"dependencies"
],
"dependencyDashboardOSVVulnerabilitySummary": "all",
"enabled": true,
"osvVulnerabilityAlerts": true,
"packageRules": [
{
"matchUpdateTypes": [
"major",
"minor"
],
"enabled": true,
"description": "Enable only major and minor updates"
},
{
"matchUpdateTypes": [
"patch"
],
"enabled": false,
"description": "Disable patch updates"
},
{
"groupName": "Docker",
"groupSlug": "docker",
"matchDatasources": [
"go"
],
"description": [
"Group Docker dependency updates in single PR."
],
"matchPackageNames": [
"github.com/docker{/,}**",
"github.com/compose-spec{/,}**"
]
},
{
"groupName": "Github Actions",
"groupSlug": "github-actions",
"matchDatasources": [
"github-tags"
],
"addLabels": [
"ci"
],
"description": [
"Add ci label to PRs which are related to Github Actions.",
"Group CI dependency updates in single PR."
]
},
{
"groupName": "Azure Bicep",
"matchDatasources": [
"azure-bicep-resource"
],
"description": [
"Group Azure Bicep dependency updates in single PR."
]
},
{
"groupName": "Terraform",
"matchDatasources": [
"terraform-module",
"terraform-provider"
],
"description": [
"Always use latest version for Terraform modules and providers."
]
},
{
"matchDatasources": [
"docker"
],
"allowedVersions": "/^latest$/",
"pinDigests": false,
"description": [
"Always use latest version for container images.",
"Do not pin by digest."
]
}
],
"automerge": true,
"platformAutomerge": true,
"printConfig": false,
"rebaseWhen": "behind-base-branch",
"recreateWhen": "auto",
"timezone": "Etc/UTC",
"schedule": [
"* * * * 0,6"
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": [
"security"
]
}
}