-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrenovate.json
More file actions
56 lines (56 loc) · 1.79 KB
/
Copy pathrenovate.json
File metadata and controls
56 lines (56 loc) · 1.79 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
54
55
56
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommits",
":dependencyDashboard"
],
"labels": ["deps"],
"schedule": ["before 6am on monday"],
"prConcurrentLimit": 5,
"prHourlyLimit": 2,
"rangeStrategy": "bump",
"lockFileMaintenance": {
"enabled": false
},
"packageRules": [
{
"description": "Group patch-level bumps across managers into one PR per week.",
"matchUpdateTypes": ["patch"],
"groupName": "patch updates",
"schedule": ["before 6am on monday"]
},
{
"description": "Rust: bump manifest constraints; humans regenerate Cargo.lock intentionally.",
"matchManagers": ["cargo"],
"rangeStrategy": "bump"
},
{
"description": "Python: bump pyproject.toml constraints; uv.lock refresh happens on the same PR (renovate runs `uv lock` post-update).",
"matchManagers": ["pep621"],
"rangeStrategy": "bump",
"postUpdateOptions": ["pythonUvUpdate"]
},
{
"description": "Docker base images: rate-limit to monthly to avoid churn from daily point releases.",
"matchManagers": ["dockerfile", "woodpecker"],
"matchDatasources": ["docker"],
"schedule": ["before 6am on the first day of the month"]
},
{
"description": "mise-managed runtimes (pkl, etc.): review each release manually — CVE-driven pins.",
"matchManagers": ["mise"],
"automerge": false,
"schedule": ["before 6am on the first day of the month"]
},
{
"description": "GitHub Actions: pin to major so drift is visible but not noisy.",
"matchManagers": ["github-actions"],
"rangeStrategy": "pin"
}
],
"vulnerabilityAlerts": {
"labels": ["deps", "security"],
"schedule": ["at any time"]
}
}