From f33c104b1f8150d5a9a34b7143c1d8cf8da1f359 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 2 Jul 2021 16:14:07 +0100 Subject: [PATCH] Update renovate config --- .github/renovate.json5 | 43 ++++++++++++++++++++++++++++++++++++++++++ renovate.json | 5 ----- 2 files changed, 43 insertions(+), 5 deletions(-) create mode 100644 .github/renovate.json5 delete mode 100644 renovate.json diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 0000000..3e4972f --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,43 @@ +{ + "enabled": true, + "dependencyDashboard": true, + "dependencyDashboardTitle": "Renovate Dashboard", + "suppressNotifications": ["prIgnoreNotification"], + "rebaseWhen": "conflicted", + "prConcurrentLimit": 5, + "helm-values": { + "enabled": false + }, + "helmv3": { + "fileMatch": ["charts/.+/Chart\\.yaml$"] + }, + "packageRules": [ + { + "datasources": ["helm"], + "commitMessageTopic": "Helm chart {{depName}}", + "separateMinorPatch": true + }, + { + "commitMessagePrefix": "[{{{parentDir}}}]", + "branchTopic": "{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}", + "updateTypes": ["major"], + "bumpVersion": "major", + "labels": ["dependency/major"], + "excludePackageNames": ["common"], + }, + { + "updateTypes": ["minor"], + "bumpVersion": "minor", + "labels": ["dependency/minor"], + "excludePackageNames": ["common"], + "groupName": ["external minor dep"], + }, + { + "updateTypes": ["patch"], + "bumpVersion": "patch", + "labels": ["dependency/patch"], + "excludePackageNames": ["common"], + "groupName": ["external patch dep"], + } + ] +} diff --git a/renovate.json b/renovate.json deleted file mode 100644 index f45d8f1..0000000 --- a/renovate.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "extends": [ - "config:base" - ] -}