-
Notifications
You must be signed in to change notification settings - Fork 8
/
renovate.json
32 lines (32 loc) · 1.05 KB
/
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
30
31
32
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", "schedule:automergeDaily", "helpers:disableTypesNodeMajor"],
"automerge": true,
"schedule": ["after 6pm on Saturday"],
"git-submodules": {
"schedule": ["every 3 months starting on the 1th month on the 20th day of the month"],
"packageRules": [
{
"matchDepNames": ["packages/service/vscode"],
"semanticCommitType": "fix"
}
],
"enabled": true
},
"npm": {
"ignoreDeps": ["jsonc-parser", "semver", "@types/semver", "node"],
"rangeStrategy": "bump",
"schedule": ["after 6pm on the 20th day of the month"],
"packageRules": [
{
"groupName": "all non-major devDependencies",
"groupSlug": "all-minor-patch-dev-deps",
"schedule": ["every 2 months after 6pm on the 15th day of the month"],
"matchPackagePatterns": ["*"],
"excludeDepNames": ["typescript"],
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"]
}
]
}
}