-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrenovate.json
26 lines (26 loc) · 967 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", "helpers:pinGitHubActionDigests"],
"rebaseWhen": "conflicted",
"automerge": false,
"schedule": ["before 3am on Monday", "before 3am on Wednesday", "before 3am on Friday"],
"packageRules": [
{
"matchPackagePatterns": ["*"],
"excludePackagePatterns": ["^@nestjs", "^graphql", "^apollo", "typescript"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch"
},
{
"matchPackagePatterns": ["^@nestjs", "^graphql", "^apollo"],
"groupName": "nestjs dependencies",
"groupSlug": "nestjs"
},
{
"matchPackagePatterns": ["typescript", "typedoc"],
"groupName": "typescript dependencies",
"groupSlug": "typescript"
}
]
}