-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
124 lines (124 loc) · 3.65 KB
/
renovate.json
File metadata and controls
124 lines (124 loc) · 3.65 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommits",
":enablePreCommit"
],
"labels": ["dependencies"],
"semanticCommits": "enabled",
"commitMessagePrefix": "chore(deps):",
"separateMinorPatch": true,
"separateMajorMinor": true,
"prConcurrentLimit": 10,
"prHourlyLimit": 0,
"prCreation": "immediate",
"platformAutomerge": true,
"schedule": [
"before 10am on monday"
],
"timezone": "America/Los_Angeles",
"packageRules": [
{
"description": "Auto-merge all Go module patch updates",
"matchDatasources": ["go"],
"matchUpdateTypes": ["patch"],
"groupName": "Go module patch updates",
"automerge": true
},
{
"description": "Auto-merge all Go module minor updates",
"matchDatasources": ["go"],
"matchUpdateTypes": ["minor"],
"groupName": "Go module minor updates",
"automerge": true
},
{
"description": "Auto-merge major Go module updates",
"matchDatasources": ["go"],
"matchUpdateTypes": ["major"],
"automerge": true
},
{
"description": "Auto-merge all GitHub Actions patch updates",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["patch"],
"groupName": "GitHub Actions patch updates",
"automerge": true
},
{
"description": "Auto-merge all GitHub Actions minor updates",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor"],
"groupName": "GitHub Actions minor updates",
"automerge": true
},
{
"description": "Auto-merge major GitHub Actions updates",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major"],
"automerge": true
},
{
"description": "Auto-merge GitHub Actions digest updates (pinned commit SHA updates)",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["digest"],
"automerge": true
},
{
"description": "Pin GitHub Actions to exact commits for security",
"matchManagers": ["github-actions"],
"pinDigests": true
},
{
"description": "Critical security updates - create immediately",
"matchDatasources": ["go", "github-actions"],
"matchUpdateTypes": ["patch"],
"matchCurrentVersion": "!/^0/",
"prPriority": 10,
"labels": ["dependencies", "security"]
},
{
"description": "Kubernetes ecosystem packages - group together",
"matchDatasources": ["go"],
"matchPackageNames": ["k8s.io/{/,}**", "sigs.k8s.io/{/,}**"],
"groupName": "Kubernetes packages",
"additionalBranchPrefix": "k8s-"
},
{
"description": "AWS SDK packages - group together",
"matchDatasources": ["go"],
"matchPackageNames": ["github.com/aws/aws-sdk-go-v2/{/,}**"],
"groupName": "AWS SDK packages",
"additionalBranchPrefix": "aws-"
},
{
"description": "OpenTelemetry packages - group together",
"matchDatasources": ["go"],
"matchPackageNames": ["go.opentelemetry.io/{/,}**"],
"groupName": "OpenTelemetry packages",
"additionalBranchPrefix": "otel-"
},
{
"description": "Prometheus packages - group together",
"matchDatasources": ["go"],
"matchPackageNames": ["github.com/prometheus/{/,}**"],
"groupName": "Prometheus packages",
"additionalBranchPrefix": "prometheus-"
}
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"],
"assignees": []
},
"osvVulnerabilityAlerts": true,
"postUpdateOptions": [
"gomodTidy"
],
"enabledManagers": [
"gomod",
"github-actions"
]
}