From 87b59879edf7917fa830083cc686967e1373754d Mon Sep 17 00:00:00 2001 From: Matthias Kurz Date: Sun, 28 Apr 2024 09:52:01 +0200 Subject: [PATCH] Add `[3.0.x] ` prefix to automatic PRs --- .github/dependabot.yml | 2 ++ .github/scala-steward.conf | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7c6a19f..1e8b63f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,8 @@ updates: directory: "/" schedule: interval: "weekly" + commit-message: + prefix: "[3.0.x] " - package-ecosystem: "github-actions" directory: "/" schedule: diff --git a/.github/scala-steward.conf b/.github/scala-steward.conf index c17dba6..e4826a9 100644 --- a/.github/scala-steward.conf +++ b/.github/scala-steward.conf @@ -1,7 +1,7 @@ pullRequests.frequency = "@monthly" -commits.message = "${artifactName} ${nextVersion} (was ${currentVersion})" +commits.message = "[3.0.x] ${artifactName} ${nextVersion} (was ${currentVersion})" pullRequests.grouping = [ - { name = "patches", "title" = "Patch updates", "filter" = [{"version" = "patch"}] } + { name = "patches", "title" = "[3.0.x] Patch updates", "filter" = [{"version" = "patch"}] } ]