Skip to content

Commit

Permalink
feat: Update Renovate configuration to group for scopes (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
yacosta738 committed Apr 1, 2024
1 parent 8700260 commit 1304cb7
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "group:all", ":dependencyDashboard", "schedule:daily"],
"extends": ["config:recommended", ":grouping"],
"grouping": {
"major": ["backend", "frontend", "github-actions"],
"minor": ["backend", "frontend", "github-actions"],
"patch": ["backend", "frontend", "github-actions"],
"digest": ["backend", "frontend", "github-actions"]
},
"reviewers": ["yacosta738"],
"packageRules": [
{
Expand All @@ -14,14 +20,16 @@
"matchUpdateTypes": ["digest", "patch", "minor", "major"]
},
{
"groupName": "spring backend",
"matchDepNames": ["org.springframework"],
"matchPackagePrefixes": ["org.springframework:"]
"groupName": "backend",
"matchDepTypes": ["backend"]
},
{
"extends": "monorepo:github-workflows-kt",
"groupName": "github-workflows-kt monorepo",
"matchUpdateTypes": ["digest", "patch", "minor", "major"]
"groupName": "frontend",
"matchDepTypes": ["frontend"]
},
{
"groupName": "github-actions",
"matchDepTypes": ["github-actions"]
}
]
}

0 comments on commit 1304cb7

Please sign in to comment.