From e982f3b0376ad538ff8de18b77a0302bf00c2e28 Mon Sep 17 00:00:00 2001 From: "jeanloup.monnier" Date: Sun, 28 May 2023 16:58:49 +0200 Subject: [PATCH] ci: update renovate config --- renovate.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/renovate.json b/renovate.json index 39a2b6e..6bec484 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,34 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:base" + ], + "baseBranches": [ + "alpha" + ], + "stabilityDays": 4, + "rebaseWhen": "behind-base-branch", + "packageRules": [ + { + "matchPackageNames": [ + "python" + ], + "matchUpdateTypes": [ + "major", + "minor" + ], + "enabled": false + }, + { + "groupName": "all patch dependencies", + "groupSlug": "all-patch-patch", + "automerge": true, + "schedule": "after 7am every weekday", + "matchPackagePatterns": [ + "*" + ], + "matchUpdateTypes": [ + "patch" + ] + } ] }