-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathrenovate.json
More file actions
109 lines (109 loc) · 2.91 KB
/
renovate.json
File metadata and controls
109 lines (109 loc) · 2.91 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
106
107
108
109
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Renovate configuration for grafana-app-sdk - groups dependencies by ecosystem to reduce PR noise while maintaining update visibility",
"extends": [
"github>grafana/grafana-renovate-config//presets/base"
],
"dependencyDashboard": true,
"dependencyDashboardTitle": "Renovate Dependency Dashboard",
"prConcurrentLimit": 3,
"prHourlyLimit": 0,
"rebaseWhen": "conflicted",
"schedule": [
"before 3am on Monday"
],
"labels": [
"dependencies"
],
"reviewers": [],
"assignees": [],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": [
"security"
]
},
"packageRules": [
{
"description": "Group all Go dependencies together except kubernetes packages",
"matchManagers": [
"gomod"
],
"groupName": "Go dependencies",
"groupSlug": "go-deps",
"semanticCommitType": "build",
"semanticCommitScope": "deps",
"matchPackageNames": [
"!/^k8s\\.io//"
]
},
{
"description": "Group all GitHub Actions together - maintains digest pinning for security while reducing PR noise",
"matchManagers": [
"github-actions"
],
"groupName": "GitHub Actions",
"groupSlug": "github-actions",
"semanticCommitType": "ci",
"semanticCommitScope": "actions",
"pinDigests": true
},
{
"description": "Separate major updates from minor/patch to enable careful review of breaking changes",
"matchUpdateTypes": [
"major"
],
"groupName": null,
"groupSlug": null,
"labels": [
"dependencies",
"major-update"
],
"semanticCommitType": "build",
"semanticCommitScope": "deps-major"
},
{
"description": "Auto-merge patch updates for Go dependencies after CI passes to reduce maintenance burden",
"matchManagers": [
"gomod"
],
"matchUpdateTypes": [
"patch"
],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash",
"ignoreTests": false,
"platformAutomerge": true
},
{
"description": "Auto-merge patch updates for GitHub Actions after CI passes",
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"patch"
],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash",
"ignoreTests": false,
"platformAutomerge": true
},
{
"description": "Separate Kubernetes client-go and apimachinery for careful version coordination",
"groupName": "Kubernetes dependencies",
"groupSlug": "k8s-deps",
"automerge": false,
"semanticCommitType": "build",
"semanticCommitScope": "k8s",
"matchPackageNames": [
"/^k8s\\.io//"
]
}
]
}