forked from block/buzz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
40 lines (40 loc) · 1.49 KB
/
Copy pathrenovate.json
File metadata and controls
40 lines (40 loc) · 1.49 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "helpers:pinGitHubActionDigests"],
"prCreation": "immediate",
"automerge": true,
"rebaseWhen": "conflicted",
"recreateWhen": "always",
"separateMinorPatch": true,
"postUpdateOptions": ["cargo:updateLockfile"],
"packageRules": [
{
"description": "Major version bumps often require code changes — require human review.",
"matchUpdateTypes": ["major"],
"automerge": false
},
{
"description": "Keep Rust crate updates isolated because 0.x minor releases often contain breaking changes. Group all minor updates per crate (don't split by individual version).",
"matchManagers": ["cargo"],
"groupName": null,
"separateMinorPatch": true,
"separateMultipleMinor": false
},
{
"description": "evalexpr v13 relicensed from MIT to AGPL-3.0 — pin below v13 until migrated to an MIT alternative.",
"matchPackageNames": ["evalexpr"],
"allowedVersions": "<13"
},
{
"description": "deadpool-redis re-exports redis types — version mismatch causes trait incompatibility.",
"matchPackageNames": ["redis", "deadpool-redis"],
"matchManagers": ["cargo"],
"groupName": "redis"
},
{
"description": "tiptap 3.23.x breaks editor lifecycle under real relay latency — pin until upstream stabilizes.",
"matchPackageNames": ["@tiptap/{/,}**"],
"allowedVersions": "<3.23.0"
}
]
}