From 0b2752e7db6b9cbdb3254406da397948c2f8f0c0 Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Tue, 2 Feb 2021 22:16:33 +0100 Subject: [PATCH] renovatebot: Configure renovatebot to update 1.x and 2.x branches Currently renovatebot only cares about the default branch, which is currently develop. In order to keep everything up-to-date we should configure it, to also make sure that the master branch for 1.x will be updated. Therefore this patch adds the `baseBranches` config option, which allows to define an array of branches to update. Reference: https://docs.renovatebot.com/configuration-options/#basebranches Signed-off-by: Sheogorath --- renovate.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/renovate.json b/renovate.json index 9c390c126..0b9f06710 100644 --- a/renovate.json +++ b/renovate.json @@ -11,6 +11,10 @@ ":rebaseStalePrs", ":maintainLockFilesWeekly" ], + "baseBranches": [ + "master", + "develop" + ], "labels": [ "type: maintenance" ],