Skip to content

Commit 866ecd9

Browse files
authored
Fix renovate config (#119)
Current config does not include grouping for npm packages, seemingly by mistake (it includes nuget, which is not used in this repo). This fixes that.
1 parent 13811da commit 866ecd9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

renovate.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": ["github>bitwarden/renovate-config"],
4-
"enabledManagers": ["github-actions", "nuget"],
5-
"commitMessagePrefix": "[deps]:",
6-
"commitMessageTopic": "{{depName}}",
4+
"enabledManagers": ["github-actions", "npm", "nuget"],
75
"packageRules": [
86
{
97
"groupName": "gh minor",
108
"matchManagers": ["github-actions"],
119
"matchUpdateTypes": ["minor", "patch"]
1210
},
11+
{
12+
"groupName": "npm minor",
13+
"matchManagers": ["npm"],
14+
"matchUpdateTypes": ["minor", "patch"]
15+
},
1316
{
1417
"groupName": "nuget minor",
1518
"matchManagers": ["nuget"],

0 commit comments

Comments
 (0)