-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
32 lines (32 loc) · 939 Bytes
/
renovate.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", ":dependencyDashboard"],
"schedule": ["before 5am every monday"],
"timezone": "Europe/London",
"packageRules": [
{
"groupName": "python dependencies",
"matchDatasources": ["pypi"]
},
{
"groupName": "python patch dependencies",
"matchDatasources": ["pypi"],
"matchUpdateTypes": ["patch"],
"schedule": ["before 5am on the first day of the month"]
},
{
"groupName": "frontend dependencies",
"matchDatasources": ["node-version", "npm"]
},
{
"groupName": "frontend patch dependencies",
"matchDatasources": ["node-version", "npm"],
"matchUpdateTypes": ["patch"],
"schedule": ["before 5am on the first day of the month"]
},
{
"groupName": "docker dependencies",
"matchDatasources": ["docker", "docker-version"]
}
]
}