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:recommended"
],
"packageRules": [
{
"matchManagers": ["npm"],
"groupName": "all npm dependencies",
"groupSlug": "npm-all",
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"matchManagers": ["nuget"],
"groupName": "all NuGet dependencies",
"groupSlug": "nuget-all",
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"matchManagers": ["github-actions"],
"groupName": "all GitHub Actions",
"groupSlug": "gh-actions-all"
}
]
}
|