-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
35 lines (35 loc) · 1 KB
/
renovate.json
File metadata and controls
35 lines (35 loc) · 1 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"enabledManagers": ["npm", "github-actions"],
"schedule": ["before 8pm on Sunday"],
"rangeStrategy": "bump",
"rebaseWhen": "behind-base-branch",
"packageRules": [
{
"matchPackageNames": ["eslint", "@eslint/js"],
"allowedVersions": "<10.0.0",
"description": "Block eslint 10 until eslint-plugin-react-hooks supports it"
},
{
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"automerge": true
},
{
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["major"],
"groupName": "all major dependencies",
"groupSlug": "all-major",
"labels": ["breaking-change"],
"automerge": true
}
],
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 8am on Monday"],
"automerge": true
}
}