-
Notifications
You must be signed in to change notification settings - Fork 15
/
renovate.json5
57 lines (52 loc) · 1.28 KB
/
renovate.json5
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
{
"extends": [
"config:recommended",
":pinAllExceptPeerDependencies",
],
"timezone": "Europe/London",
"dependencyDashboardApproval": false,
"prHourlyLimit": 0,
"branchConcurrentLimit": 0,
"automerge": false,
"rangeStrategy": "pin",
"labels": ["dependencies"],
"enabledManagers": [
"pep621",
"npm",
],
"packageRules": [
{
"groupName": "boto",
"matchManagers": ["pep621"],
"matchPackageNames": ["/^boto.*$/"],
"schedule": ["* 0-3 1 * *"], // monthly
},
{
"groupName": "cdk",
"matchManagers": ["pep621", "npm"],
"matchPackageNames": ["/^aws-cdk.*$/"],
"schedule": ["* 0-3 1 * *"], // monthly
},
{
"matchManagers": ["pep621"],
"matchDepTypes": ["project.dependencies"],
"schedule": ["before 4am on monday"], // weekly
},
{
"matchManagers": ["npm"],
"schedule": ["before 4am on monday"], // weekly
},
{
"matchManagers": ["pep621"],
"matchDepTypes": ["dependency-groups"],
"schedule": ["* 0-3 1 * *"], // monthly
},
{
// We don't want notifications about Django 5
// until 5.2 LTS is released in 2025
"matchManagers": ["pep621"],
"matchPackageNames": ["django"],
"allowedVersions": "<5.0",
}
]
}