From 3fcf5839c7595f74473e6964432f17d2008659f4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 2 Nov 2024 10:56:17 +0100 Subject: [PATCH] chore(config): migrate config .github/renovate.json5 (#49) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/renovate.json5 | 43 ++++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 7ac1f53..a2e192b 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,27 +1,30 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "github>plcnk/.github:default.json5", - ":semanticCommitTypeAll(chore)" + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'github>plcnk/.github:default.json5', + ':semanticCommitTypeAll(chore)', ], - - "gitIgnoredAuthors": [ - "renovate[bot]@users.noreply.github.com", - "178334506+plcnk-bot[bot]@users.noreply.github.com" + gitIgnoredAuthors: [ + 'renovate[bot]@users.noreply.github.com', + '178334506+plcnk-bot[bot]@users.noreply.github.com', ], - - "regexManagers": [ + customManagers: [ { - "fileMatch": ["\\.yaml$"], - "matchStrings": [ - "# ?renovate datasource=(?.+?) depName=(?.+)\\n.+: [\"']?(?.+?)[\"']?\\n" - ] - } + customType: 'regex', + fileMatch: [ + '\\.yaml$', + ], + matchStrings: [ + '# ?renovate datasource=(?.+?) depName=(?.+)\\n.+: ["\']?(?.+?)["\']?\\n', + ], + }, ], - "packageRules": [ + packageRules: [ { - "matchDatasources": ["helm"], - "commitMessageTopic": "{{depName}} Helm release" - } - ] + matchDatasources: [ + 'helm', + ], + commitMessageTopic: '{{depName}} Helm release', + }, + ], }