-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathrenovate.json
More file actions
53 lines (53 loc) · 1.84 KB
/
Copy pathrenovate.json
File metadata and controls
53 lines (53 loc) · 1.84 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>grafana/grafana-renovate-config//presets/base",
"github>grafana/grafana-renovate-config//presets/labels",
"github>grafana/grafana-renovate-config//presets/github-actions",
"schedule:earlyMondays"
],
"minimumReleaseAge": "3 days",
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"],
"schedule": ["at any time"],
"additionalBranchPrefix": "security-"
},
"packageRules": [
{
"description": "Do not pin digests for docker-compose images — digest pinning breaks Windows systems (architecture mismatch)",
"matchManagers": ["docker-compose"],
"pinDigests": false
},
{
"description": "Pin npm dependency ranges to exact versions — defense-in-depth against supply-chain attacks on range-pinned releases",
"matchManagers": ["npm"],
"rangeStrategy": "pin"
},
{
"description": "Group all npm dependency updates into a single PR to reduce noise",
"matchManagers": ["npm"],
"groupName": "npm dependencies"
},
{
"description": "Group all container image updates (docker-compose and terraform) into a single PR",
"matchManagers": ["docker-compose", "terraform"],
"groupName": "container images"
},
{
"description": "Group all Dockerfile base image updates into a single PR",
"matchManagers": ["dockerfile"],
"groupName": "dockerfile base images"
},
{
"description": "Group all Go module updates into a single PR to reduce noise",
"matchManagers": ["gomod"],
"groupName": "go dependencies"
},
{
"description": "Auto-merge lock file maintenance PRs — no version bumps, safe to merge automatically",
"matchUpdateTypes": ["lockFileMaintenance"],
"automerge": true
}
]
}