From 295b0dcc3aa591e3f838043cf9fc8ce0164f9943 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Tue, 12 Dec 2023 13:28:55 +0000 Subject: [PATCH] chore(renovate): Prioritize major over minor over patch updates in develop Part-of: --- .gitlab/renovate.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitlab/renovate.json b/.gitlab/renovate.json index 9b453909a..a4e7ec774 100644 --- a/.gitlab/renovate.json +++ b/.gitlab/renovate.json @@ -25,6 +25,16 @@ "branchConcurrentLimit": 0, "prConcurrentLimit": 0 }, + { + "matchBaseBranches": ["develop"], + "matchUpdateTypes": ["major"], + "prPriority": 2 + }, + { + "matchBaseBranches": ["develop"], + "matchUpdateTypes": ["minor"], + "prPriority": 1 + }, { "matchUpdateTypes": ["major", "minor"], "matchBaseBranches": ["stable"],