-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
53 lines (53 loc) · 1.98 KB
/
Copy pathrenovate.json
File metadata and controls
53 lines (53 loc) · 1.98 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
53
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "customManagers:githubActionsVersions", ":automergeMinor", ":automergePatch"],
"lockFileMaintenance": {
"description": "Refresh transitive pins in Cargo.lock, docs/package-lock.json and example/hello-world-py/uv.lock. Without this, a lock whose package file only carries open ranges (as the uv example does) never moves, because Renovate has no constraint left to bump.",
"enabled": true,
"schedule": ["* * 1 * *"]
},
"packageRules": [
{
"description": "Group all Rust toolchain version updates",
"matchDepNames": ["rust"],
"groupName": "rust"
},
{
"description": "Group non-major Rust dependency updates",
"matchManagers": ["cargo"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "Rust dependencies"
},
{
"description": "Group non-major npm dependency updates",
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "npm dependencies"
},
{
"description": "Group non-major Python dependency updates",
"matchCategories": ["python"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "Python dependencies"
},
{
"description": "Group non-major Docker image updates",
"matchDatasources": ["docker"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "Docker images"
},
{
"description": "Group all GitHub Actions updates",
"matchManagers": ["github-actions"],
"groupName": "GitHub Actions"
},
{
"description": "Batch every example app dependency update into one PR on the first of the month. Must stay last so it overrides the per-ecosystem groups above for anything under example/.",
"matchFileNames": ["example/**"],
"groupName": "example dependencies",
"schedule": ["* * 1 * *"],
"separateMajorMinor": false,
"separateMinorPatch": false
}
]
}