-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathrenovate.json
More file actions
76 lines (76 loc) · 2.09 KB
/
renovate.json
File metadata and controls
76 lines (76 loc) · 2.09 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"enabledManagers": [
"pep621",
"pre-commit",
"github-actions"
],
"minimumReleaseAge": "3 days",
"minimumReleaseAgeBehaviour": "timestamp-optional",
"configMigration": true,
"extends": [
"config:recommended",
":disableDependencyDashboard",
":semanticCommitsDisabled",
":enablePreCommit"
],
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"prConcurrentLimit": 5,
"prHourlyLimit": 2,
"packageRules": [
{
"enabled": false,
"matchPackageNames": [
"Python"
]
},
{
"description": "Use widen range for install dependencies to allow compatibility updates",
"matchDepTypes": [
"project.dependencies",
"project.optional-dependencies"
],
"matchManagers": [
"pep621"
],
"rangeStrategy": "widen",
"automerge": false
},
{
"description": "Use pin range for internal dependencies",
"matchDepTypes": [
"dependency-groups"
],
"matchManagers": [
"pep621"
],
"rangeStrategy": "pin",
"automerge": true
},
{
"description": "Auto-merge pre-commit/github-actions updates",
"matchManagers": [
"pre-commit",
"github-actions"
],
"automerge": true
},
{
"description": "Don't merge major updates automatically",
"matchUpdateTypes": [
"major"
],
"automerge": false
},
{
"description": "Disable minimumReleaseAge for lock file maintenance updates and delegate age checks to uv",
"matchUpdateTypes": [
"lockFileMaintenance"
],
"minimumReleaseAge": null
}
]
}