forked from nautobot/nautobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
46 lines (46 loc) · 1.42 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"baseBranches": ["develop", "next"],
"enabledManagers": ["pip_requirements", "poetry"],
"extends": [
"config:base"
],
"labels": [
"dependencies"
],
"packageRules": [
{
"description": "Group patch-only updates to develop weekly to cut down on PR noise.",
"groupName": "Lock-file Patch Releases for Develop",
"matchBaseBranches": ["develop"],
"schedule": [
"before 3am on Friday"
],
"major": {"enabled": false},
"minor": {"enabled": false}
},
{
"description": "Schedule next updates.",
"groupName": "Lock-file Patch Releases for Next",
"matchBaseBranches": ["next"],
"schedule": [
"before 2am on Friday"
],
"rangeStrategy": "update-lockfile"
},
{
"description": "Require dashboard approval for non-patch updates to graphene-django-optimizer and django-timezone-field.",
"dependencyDashboardApproval": true,
"matchBaseBranches": ["next"],
"matchPackageNames": ["graphene-django-optimizer", "django-timezone-field"],
"matchUpdateTypes": ["major", "minor"]
},
{
"description": "Require dashboard approval for major updates for packages known to have breaking changes.",
"dependencyDashboardApproval": true,
"matchBaseBranches": ["next"],
"matchPackageNames": ["django-taggit"],
"matchUpdateTypes": ["major"]
}
],
"rangeStrategy": "in-range-only"
}