From bc579e794fe6a74635dbdd2e0943219e23531d15 Mon Sep 17 00:00:00 2001 From: RenovateBot Date: Thu, 20 Jan 2022 08:56:43 +0000 Subject: [PATCH] Configure Renovate --- .gitlab/renovate.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitlab/renovate.json diff --git a/.gitlab/renovate.json b/.gitlab/renovate.json new file mode 100644 index 000000000..855b815d9 --- /dev/null +++ b/.gitlab/renovate.json @@ -0,0 +1,18 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "poetry": { + "fileMatch": ["api/pyproject.toml"] + }, + "prConcurrentLimit": 5, + "ignoreDeps": ["$CI_REGISTRY/funkwhale/backend-test-docker"], + "rangeStrategy": "bump", + "baseBranches": ["stable", "develop"], + "packageRules": [ + { + "_comment": "We do this to avoid breaking updates for the stable branch", + "matchUpdateTypes": ["major", "minor"], + "matchBaseBranches": ["stable"], + "enabled": false + } + ] +}