-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
45 lines (45 loc) · 1.77 KB
/
renovate.json
File metadata and controls
45 lines (45 loc) · 1.77 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices"],
"packageRules": [
{
"description": "skip cargo deps that are explicitly pinned with '='",
"matchDepTypes": ["dependencies", "dev-dependencies", "build-dependencies"],
"allowedVersions": "!/^=/"
},
{
"description": "group non-major dependency upgrades",
"groupName": "dependencies",
"groupSlug": "dependencies",
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"]
},
{
"description": "group non-major dev-dependency upgrades",
"groupName": "dev-dependencies",
"groupSlug": "dev-dependencies",
"matchDepTypes": ["dev-dependencies"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"]
},
{
"description": "upgrade cargo-binstall monthly and auto-merge after a 14-day release-age buffer",
"extends": ["schedule:monthly"],
"groupName": "cargo-binstall",
"groupSlug": "cargo-binstall",
"matchPackageNames": ["cargo-binstall"],
"minimumReleaseAge": "14 days",
"automerge": true,
"automergeType": "branch"
},
{
"description": "batch github actions monthly and silently auto-merge after a 14-day release-age buffer",
"extends": ["schedule:monthly"],
"groupName": "github actions",
"groupSlug": "github-actions",
"matchManagers": ["github-actions"],
"minimumReleaseAge": "14 days",
"automerge": true,
"automergeType": "branch"
}
]
}