-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrenovate.json
More file actions
43 lines (43 loc) · 1.76 KB
/
Copy pathrenovate.json
File metadata and controls
43 lines (43 loc) · 1.76 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Extends the org-wide policy for published KMP libraries (automerge baseline, 3-day soak, kotlin-toolchain and first-party holds — see meshtastic/.github:kmp-library.json for rationale). Local rules below keep this repo stricter than the preset: every Gradle update is human-reviewed because this SDK is consumed by the apple and android apps. packageRules apply in order and the last match wins, so these rules override the preset's.",
"extends": [
"local>meshtastic/.github:kmp-library",
":timezone(UTC)"
],
"rangeStrategy": "bump",
"lockFileMaintenance": { "enabled": true, "schedule": ["before 6am on monday"] },
"packageRules": [
{
"description": "Hold all non-major Gradle updates for review — overrides the preset's automerge baseline. Delete this rule to adopt the preset's baseline (automerge minor/patch/digest after the soak).",
"matchManagers": ["gradle", "gradle-wrapper"],
"matchUpdateTypes": ["patch", "minor"],
"automerge": false
},
{
"matchPackageNames": ["org.meshtastic:protobufs"],
"automerge": false,
"prBodyNotes": [
"Bumps the `org.meshtastic:protobufs` artifact (the wire schema). Review the regenerated API diff carefully — new `oneof` arms break exhaustive `when` for consumers; run `./gradlew updateKotlinAbi`. See `docs/versioning.md`."
]
},
{
"groupName": "sqldelight",
"matchPackageNames": [
"/^app\\.cash\\.sqldelight/"
]
},
{
"groupName": "kable",
"matchPackageNames": [
"/^com\\.juul\\.kable/"
]
},
{
"groupName": "wire",
"matchPackageNames": [
"/^com\\.squareup\\.wire/"
]
}
]
}