-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathrenovate.json
More file actions
51 lines (51 loc) · 2.04 KB
/
Copy pathrenovate.json
File metadata and controls
51 lines (51 loc) · 2.04 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
{
"$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": "pin rust-analyzer crates (fast-moving, reproducibility critical)",
"groupName": "rust-analyzer dependencies",
"groupSlug": "rust-analyzer-dependencies",
"matchPackageNames": ["/^ra_ap_/"],
"rangeStrategy": "pin"
},
{
"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
},
{
"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"
}
]
}