From 096a6210985f93d3358e3319da5c9e3b0085f108 Mon Sep 17 00:00:00 2001 From: Erik Godding Boye Date: Sat, 6 Sep 2025 23:51:01 +0200 Subject: [PATCH] Make the local Renovate config extend shared preset Signed-off-by: Erik Godding Boye --- .github/renovate.json5 | 33 +++------------------------------ 1 file changed, 3 insertions(+), 30 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 7949dc5b..b5ee1ae0 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,24 +1,13 @@ { $schema: 'https://docs.renovatebot.com/renovate-schema.json', - enabled: true, - gitAuthor: 'Renovate Bot ', - gitIgnoredAuthors: [ - '157150467+octo-sts[bot]@users.noreply.github.com', + extends: [ + 'github>cert-manager/renovate-config:default.json5', ], enabledManagers: [ 'custom.regex', 'github-actions', 'gomod', ], - extends: [ - 'config:best-practices', - ':gitSignOff', - ':disableVulnerabilityAlerts', - ':rebaseStalePrs', - ':prConcurrentLimit10', // Set a limit to avoid too many PRs, at least on the first run - ':prHourlyLimitNone', - ], - timezone: 'Europe/London', customManagers: [ { customType: 'regex', @@ -56,28 +45,15 @@ ], }, }, - { - groupName: 'Misc GitHub actions', - matchManagers: [ - 'github-actions', - ], - }, - { - groupName: 'Misc Go deps', - matchManagers: [ - 'gomod', - ], - }, { matchManagers: [ 'custom.regex', - 'gomod', ], matchUpdateTypes: [ 'major', 'digest', ], - dependencyDashboardApproval: true + dependencyDashboardApproval: true, }, { matchPackageNames: [ @@ -86,7 +62,4 @@ enabled: false, } ], - ignorePaths: [ - '**/vendor/**', - ], }