-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrenovate.json
29 lines (29 loc) · 950 Bytes
/
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"timezone": "Asia/Tokyo",
"schedule": ["after 10am on Monday", "before 11am on Monday"],
"labels": ["renovate", "dependencies"],
"lockFileMaintenance": {
"enabled": false
},
"prConcurrentLimit": 4,
"prHourlyLimit": 2,
"rangeStrategy": "bump",
"dependencyDashboard": true,
"ignorePaths": ["vendor-bin"],
"ignoreDeps": ["bear/package", "bear/resource", "bear/sunday", "ray/aop", "ray/di"],
"packageRules": [
{
"matchManagers": ["composer"],
"matchUpdateTypes": ["patch", "minor", "major"],
"matchDepTypes": ["require", "require-dev"],
"groupName": "Composer dependencies",
"groupSlug": "composer-dependencies",
"labels": ["renovate", "dependencies"],
"automerge": false
}
]
}