-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathrenovate.json5
45 lines (40 loc) · 971 Bytes
/
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
{
"extends": [
"config:recommended",
":pinAllExceptPeerDependencies",
],
"timezone": "Europe/London",
"dependencyDashboardApproval": false,
"prHourlyLimit": 0,
"prConcurrentLimit": 20,
"automerge": false,
"rangeStrategy": "pin",
"labels": ["dependencies"],
"enabledManagers": [
"pep621",
"npm",
],
"packageRules": [
{
"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",
}
]
}