forked from ampproject/amphtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.renovaterc.json
109 lines (93 loc) · 2.51 KB
/
.renovaterc.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"extends": ["config:base"],
"node": {
"supportPolicy": ["lts_active"]
},
"statusCheckVerify": true,
"ignorePaths": [],
"commitMessagePrefix": "📦",
"timezone": "America/Los_Angeles",
"schedule": "after 12am every weekday",
"masterIssue": true,
"prBodyColumns": ["Package", "Update", "Type", "Change", "Package file"],
"separateMinorPatch": true,
"packageRules": [
{
"paths": ["**/*"],
"groupName": "subpackage devDependencies",
"major": {
"groupName": null,
"managerBranchPrefix": "subpackage-"
}
},
{
"paths": ["src/**"],
"labels": ["WG: runtime"],
"groupName": "runtime devDependencies",
"major": {
"groupName": null,
"managerBranchPrefix": "runtime-"
}
},
{
"paths": ["build-system/**"],
"labels": ["WG: infra"],
"groupName": "build system devDependencies",
"major": {
"groupName": null,
"managerBranchPrefix": "build-system-"
}
},
{
"paths": ["validator/**"],
"labels": ["WG: caching"],
"groupName": "validator devDependencies",
"major": {
"groupName": null,
"managerBranchPrefix": "validator-"
}
},
{
"paths": ["+(package.json)"],
"groupName": "core devDependencies",
"major": {
"groupName": null,
"managerBranchPrefix": "core-"
}
},
{
"packagePatterns": ["\\b(prettier|eslint)\\b"],
"prBodyNotes": [
"This PR upgrades one or more packages used to ensure code formatting. In case there are new errors, you will need to check out this branch, make sure `gulp lint` and `gulp prettify` pass (try using `--fix`), and commit the fixes to ensure a green Travis build."
],
"groupName": "linting devDependencies",
"major": {
"groupName": null,
"managerBranchPrefix": "linting-"
}
},
{
"excludePackagePatterns": ["^@ampproject/"],
"depTypeList": ["dependencies"],
"enabled": false
},
{
"packagePatterns": ["^@ampproject/"],
"depTypeList": ["devDependencies"],
"groupName": "ampproject devDependencies",
"major": {
"groupName": null,
"managerBranchPrefix": "ampproject-"
}
},
{
"packagePatterns": ["^@ampproject/"],
"depTypeList": ["dependencies"],
"groupName": "ampproject dependencies",
"major": {
"groupName": null,
"managerBranchPrefix": "ampproject-"
}
}
]
}