-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
36 lines (36 loc) · 1.17 KB
/
Copy pathrenovate.json
File metadata and controls
36 lines (36 loc) · 1.17 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"enabledManagers": ["pep621", "pyenv", "github-actions"],
"dependencyDashboard": false,
"prConcurrentLimit": 3,
"prHourlyLimit": 2,
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash",
"platformAutomerge": false,
"minimumReleaseAge": "3 days",
"packageRules": [
{
"description": "Test-only deps carry no runtime risk and the test job gates them",
"matchDepTypes": ["dependency-groups"],
"groupName": "test dependencies"
},
{
"description": "A major runtime bump can change behaviour the test suite does not cover, so it stops for a human",
"matchUpdateTypes": ["major"],
"matchDepTypes": ["project.dependencies"],
"automerge": false
},
{
"description": "Matched by name because the interpreter surfaces twice, as requires-python and as .python-version. CI is the only thing exercising it.",
"matchDepNames": ["python"],
"matchUpdateTypes": ["major", "minor"],
"automerge": false
}
]
}