-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathrenovate.json
More file actions
29 lines (29 loc) · 845 Bytes
/
renovate.json
File metadata and controls
29 lines (29 loc) · 845 Bytes
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"enabledManagers": ["github-actions", "npm"],
"dependencyDashboard": false,
"packageRules": [
{
"description": "Pin all GitHub Actions to SHA digests",
"matchManagers": ["github-actions"],
"pinDigests": true,
"minimumReleaseAge": "7 days",
"groupName": "Renovatebot GHA Updates"
},
{
"description": "Allow immediate updates for ConsenSys/github-actions",
"matchManagers": ["github-actions"],
"matchPackagePrefixes": ["ConsenSys/github-actions"],
"minimumReleaseAge": "0 days"
},
{
"description": "Group npm dependency updates",
"matchManagers": ["npm"],
"minimumReleaseAge": "7 days",
"groupName": "npm dependencies"
}
]
}