-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathrenovate.json
More file actions
60 lines (60 loc) · 1.91 KB
/
Copy pathrenovate.json
File metadata and controls
60 lines (60 loc) · 1.91 KB
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
58
59
60
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommits"
],
"rebaseWhen": "never",
"dependencyDashboard": true,
"labels": ["dependencies"],
"baseBranches": ["dev"],
"enabledManagers": ["pep621", "github-actions"],
"prConcurrentLimit": 5,
"prHourlyLimit": 2,
"minimumReleaseAge": "5 days",
"schedule": ["after 9am and before 6pm every weekday"],
"timezone": "Europe/Paris",
"commitMessagePrefix": "chore(deps):",
"commitMessageAction": "update",
"packageRules": [
{
"description": "Group all Python minor/patch updates in one PR",
"matchManagers": ["pep621"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "python dependencies (minor/patch)",
"labels": ["dependencies", "minor or patch"]
},
{
"description": "Major updates: one PR per package, require dashboard approval",
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true,
"minimumReleaseAge": "30 days",
"labels": ["dependencies", "major"]
},
{
"description": "Group GitHub Actions minor/patch updates",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "github-actions (minor/patch)"
},
{
"description": "Security updates bypass schedule and release age",
"matchCategories": ["security"],
"schedule": ["at any time"],
"minimumReleaseAge": "0 days",
"prPriority": 10,
"labels": ["dependencies", "security"]
},
{
"description": "Internal Antares packages: require dashboard approval",
"matchPackagePrefixes": ["Antares-", "antares-"],
"dependencyDashboardApproval": true,
"labels": ["dependencies", "internal"]
},
{
"description": "Pin Python and Node versions",
"matchDepNames": ["python", "node"],
"enabled": false
}
]
}