-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrenovate.json
More file actions
47 lines (47 loc) · 1.04 KB
/
renovate.json
File metadata and controls
47 lines (47 loc) · 1.04 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"matchDepTypes": ["devDependencies"],
"automerge": true
},
{
"matchPackageNames": ["python"],
"ignoreUnstable": true,
"allowedVersions": "<=3.13"
},
{
"matchDatasources": ["docker"],
"matchPackageNames": ["python"],
"allowedVersions": "<3.14"
}
],
"docker": {
"enabled": true
},
"pip_requirements": {
"enabled": true
},
"python": {
"enabled": true
},
"schedule": ["at any time"],
"timezone": "UTC",
"labels": ["dependencies"],
"semanticCommits": "enabled",
"dependencyDashboard": true,
"prHourlyLimit": 0,
"prConcurrentLimit": 0,
"vulnerabilityAlerts": {
"labels": ["security"],
"automerge": true
}
}