-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrenovate.json
More file actions
52 lines (52 loc) · 2.6 KB
/
Copy pathrenovate.json
File metadata and controls
52 lines (52 loc) · 2.6 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
52
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": [
"THE ONLY Renovate config file — do not add another. A forgotten .github/renovate.json5 (the original Dependabot->Renovate migration config) shadowed this file for weeks: Renovate's config discovery (and Mend's cached config-file name) preferred it, so edits here were silently ignored while its 14-day minimumReleaseAge broke every uv artifact update (renovatebot/renovate#41624). Deleted 2026-07; if Renovate ever again behaves contrary to this file, first check for a second config file (renovate.json5, .github/renovate.json*, .renovaterc*), then the Mend portal's resolved config.",
"Low-noise dependency updates; uv owns version resolution. pyproject keeps floor ranges and rangeStrategy=update-lockfile means `uv lock` picks versions jointly — cross-package conflicts (e.g. numba capping numpy) resolve silently instead of failing the batch, and un-stick themselves when upstream catches up. No minimumReleaseAge anywhere: any age gate is unenforceable with uv resolution (#41624 — uv resolves transitives past the gate and the artifact step fails); CI running the full suite in the container is the automerge gate.",
"Noise: all non-major updates grouped into one weekly PR that automerges when CI is green; majors are gated behind an explicit dashboard-approval tick; lockFileMaintenance refreshes transitive deps weekly. Security fixes (GitHub + OSV alerts) automerge on green CI without waiting for the weekly schedule.",
"python is guarded: Renovate classes base-image bumps like 3.12 -> 3.14 as 'minor', so the major-only approval rule wouldn't catch it — its own packageRule adds dependencyDashboardApproval so a bump sits as an unchecked dashboard item instead of an immortal PR, until someone deliberately ticks it."
],
"extends": [
"config:recommended",
"group:allNonMajor",
"schedule:weekly",
"helpers:pinGitHubActionDigests"
],
"rangeStrategy": "update-lockfile",
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"osvVulnerabilityAlerts": true,
"vulnerabilityAlerts": {
"automerge": true,
"labels": [
"security"
]
},
"packageRules": [
{
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest"
],
"automerge": true
},
{
"matchUpdateTypes": [
"major"
],
"dependencyDashboardApproval": true
},
{
"matchPackageNames": [
"python"
],
"groupName": "python",
"automerge": false,
"dependencyDashboardApproval": true
}
]
}