forked from grafana/grafana-infinity-datasource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
59 lines (59 loc) · 1.87 KB
/
Copy pathrenovate.json
File metadata and controls
59 lines (59 loc) · 1.87 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>grafana/grafana-renovate-config//presets/automerge"],
"minimumReleaseAge": "7 days",
"platformAutomerge": true,
"timezone": "UTC",
"prConcurrentLimit": 2,
"dependencyDashboard": true,
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"],
"prPriority": 100,
"schedule": ["at any time"],
"additionalBranchPrefix": "security-"
},
"packageRules": [
{
"description": "Bundle all frontend dependency updates into a single weekly PR",
"matchManagers": ["npm"],
"groupName": "Frontend dependencies",
"groupSlug": "frontend-dependencies",
"schedule": ["schedule:earlyMondays"]
},
{
"description": "Bundle all backend dependency updates into a single weekly PR",
"matchManagers": ["gomod"],
"groupName": "Backend dependencies",
"groupSlug": "backend-dependencies",
"schedule": ["schedule:earlyMondays"]
},
{
"description": "Ignore major updates for dependencies that need to be kept in sync with Grafana",
"enabled": false,
"matchDatasources": ["npm"],
"matchPackageNames": [
"react",
"react-dom",
"react-router-dom",
"react-router-dom-v5-compat",
"@types/react",
"@types/react-dom"
],
"matchUpdateTypes": ["major"]
},
{
"description": "Ignore major updates for dependencies that need to be kept in sync with the Node version defined in .nvmrc",
"enabled": false,
"matchDatasources": ["npm", "node"],
"matchPackageNames": ["@types/node", "node"],
"matchUpdateTypes": ["major"]
},
{
"description": "Automerge minor dependencies",
"automerge": true,
"matchUpdateTypes": ["minor", "patch", "pin", "pinDigest"],
"labels": ["automerge-minor"]
}
]
}