-
Notifications
You must be signed in to change notification settings - Fork 4
/
groupFixtureUpdates.json
42 lines (39 loc) · 1.05 KB
/
groupFixtureUpdates.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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Group, schedule, and auto-merge all dependency updates in `__fixtures__` sub-folders.",
"ignorePresets": [":ignoreModulesAndTests"],
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**",
"**/examples/**",
"**/__tests__/**",
"**/test/**",
"**/tests/**"
],
"packageRules": [
{
"groupName": "fixture dependencies",
"schedule": ["before 5am on the 1st and 15th day of the month"],
"matchFileNames": ["**/__fixtures__/**"],
"matchPackageNames": ["*"],
"matchDepTypes": [
"dependencies",
"devDependencies",
"engines",
"optionalDependencies",
"overrides",
"packageManager",
"peerDependencies",
"resolutions"
],
"major": {
"dependencyDashboardApproval": false
},
"commitMessagePrefix": "[fixtures]",
"commitMessageExtra": "",
"automerge": true,
"platformAutomerge": true
}
]
}