-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrenovate.json
More file actions
44 lines (44 loc) · 1.18 KB
/
renovate.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"schedule:monthly",
"group:linters",
"group:postcss",
":reviewer(team:websites)",
":enableVulnerabilityAlerts",
":label(dependencies)"
],
"prConcurrentLimit": 1,
"rebaseWhen": "conflicted",
"dependencyDashboardApproval": true,
"packageRules": [
{
"groupName": "minor and patch updates",
"matchDatasources": ["npm"],
"minimumReleaseAge": "7 days",
"matchUpdateTypes": ["minor", "patch"],
"automerge": true,
"automergeType": "branch",
"prPriority": 1,
"dependencyDashboardApproval": false,
"matchPackageNames": ["*"]
},
{
"minimumReleaseAge": "7 days",
"matchDatasources": ["npm"],
"automerge": true,
"automergeType": "branch",
"dependencyDashboardApproval": false,
"matchPackageNames": ["*"]
},
{
"additionalBranchPrefix": "iterative-package-",
"matchDatasources": ["npm"],
"prCreation": "immediate",
"prPriority": 2,
"dependencyDashboardApproval": false,
"matchPackageNames": ["/@dvcorg/", "/iterative/"]
}
]
}