From 498d73b1dc701421948cd6bd4f834fb8cffae450 Mon Sep 17 00:00:00 2001 From: yann Date: Fri, 4 Oct 2024 09:57:34 +0200 Subject: [PATCH] refactor(steward): improve grouping to cope with early semver --- .scala-steward.conf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.scala-steward.conf b/.scala-steward.conf index ec83017be..04f88d192 100644 --- a/.scala-steward.conf +++ b/.scala-steward.conf @@ -4,12 +4,12 @@ updates.allow = [ } ] -pullRequests = { - frequency = "@asap" - title = "Update ${artifactName} to ${nextVersion}" - customLabels = ["dependencies", "com.raw-labs"] - includeMatchedLabels = "(.*semver.*)" -} +pullRequests.customLabels = [ "dependencies"] + +pullRequests.grouping = [ + { name = "patches", "title" = "chore(deps): patch update", "filter" = [{"version" = "patch"}] }, + { name = "minor", "title" = "chore(deps): minor update", "filter" = [{"version" = "minor"}] }, + { name = "major", "title" = "chore(deps): major update", "filter" = [{"version" = "major"}] } +] assignees = ["datYori"] -reviewers = ["raw-labs/snapi"]