Skip to content

Commit

Permalink
Update renovate config to group PRs (#368)
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Lewis <ianmlewis@gmail.com>

Signed-off-by: Ian Lewis <ianmlewis@gmail.com>
  • Loading branch information
Ian Lewis authored Nov 28, 2022
1 parent 28b554f commit 2cd857d
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,28 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"extends": ["config:base"],
"schedule": ["every weekend"],
"packageRules": [
{
"matchManagers": ["github-actions"],
"groupName": "github-actions"
},
{
"matchManagers": ["gomod"],
"excludePackageNames": ["go"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "go"
},
{
"matchManagers": ["npm"],
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "npm"
},
{
"matchManagers": ["npm"],
"matchDepTypes": ["devDependencies"],
"groupName": "npm dev"
}
]
}

0 comments on commit 2cd857d

Please sign in to comment.