-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathrenovate.json
More file actions
46 lines (46 loc) · 1.32 KB
/
renovate.json
File metadata and controls
46 lines (46 loc) · 1.32 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"rangeStrategy": "replace",
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"automerge": false,
"automergeType": "pr",
"platformAutomerge": true,
"rebaseWhen": "behind-base-branch",
"internalChecksFilter": "strict",
"git-submodules": {
"enabled": true
},
"packageRules": [
{
"description": "Automerge dev dependency minor and patch updates",
"matchDepTypes": ["dev", "dependency-groups.dev"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"description": "Automerge lock file maintenance",
"matchUpdateTypes": ["lockFileMaintenance"],
"automerge": true
},
{
"description": "Group minor and patch production dependencies",
"matchUpdateTypes": ["minor", "patch"],
"groupName": "dependencies (minor and patch)",
"groupSlug": "dependencies-minor-patch"
},
{
"description": "Do not automerge 0.x versions (can have breaking changes)",
"matchCurrentVersion": "/^0\\./",
"automerge": false
},
{
"description": "Disable Python runtime version updates",
"matchPackageNames": ["python", "python3", "cpython", "requires-python"],
"enabled": false
}
]
}