-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathrenovate.json
More file actions
27 lines (27 loc) · 877 Bytes
/
renovate.json
File metadata and controls
27 lines (27 loc) · 877 Bytes
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>ansible/actions//config/renovate.json"],
"packageRules": [
{
"description": "Disable updates to requires-python field",
"enabled": false,
"matchDepTypes": ["requires-python"],
"matchManagers": ["pep621"]
},
{
"description": "Disable updates to build-system requires",
"enabled": false,
"matchDepTypes": ["build-system.requires"],
"matchManagers": ["pep621"]
},
{
"branchTopic": "python-deps-bump",
"commitMessagePrefix": "fix(deps): bump python dependencies ",
"description": "Bump minimum versions for all Python deps (project.dependencies and dependency-groups)",
"groupName": "bump",
"groupSlug": "bump",
"matchCategories": ["python"],
"rangeStrategy": "bump"
}
]
}