-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
26 lines (26 loc) · 951 Bytes
/
Copy pathrenovate.json
File metadata and controls
26 lines (26 loc) · 951 Bytes
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", ":semanticCommits", ":dependencyDashboard"],
"timezone": "America/New_York",
"schedule": ["before 6am on monday"],
"labels": ["dependencies"],
"lockFileMaintenance": {"enabled": true, "schedule": ["before 6am on monday"]},
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": false,
"groupName": "minor and patch updates",
},
{"matchManagers": ["poetry"], "groupName": "python dependencies"},
{
"matchManagers": ["poetry"],
"matchDepTypes": ["dev", "dev-dependencies"],
"groupName": "python dev dependencies",
},
{
"matchManagers": ["dockerfile", "woodpecker"],
"groupName": "container images",
},
],
}