chore(config): migrate config renovate.json5 (#39)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2025-12-04 23:29:10 +01:00
committed by GitHub
parent c8cf31a151
commit 1325e57188

View File

@@ -1,26 +1,33 @@
{ {
$schema: "https://docs.renovatebot.com/renovate-schema.json", $schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: ["config:recommended"], extends: [
minimumReleaseAge: "2 days", 'config:recommended',
],
minimumReleaseAge: '2 days',
packageRules: [ packageRules: [
{ {
groupName: "Docker images", groupName: 'Docker images',
groupSlug: "dockerimages", groupSlug: 'dockerimages',
matchDatasources: ["docker"], matchDatasources: [
'docker',
],
pinDigests: true, pinDigests: true,
}, },
], ],
customManagers: [ customManagers: [
{ {
customType: "regex", customType: 'regex',
fileMatch: [".*/templates/.*\\.yaml$", ".*/templates/.*\\.yml$"], managerFilePatterns: [
'/.*/templates/.*\\.yaml$/',
'/.*/templates/.*\\.yml$/',
],
matchStrings: [ matchStrings: [
"repoURL:s*(?<registryUrls>https?://[^\\n\\r]+)[\\s\\S]*?targetRevision:s*(?<currentValue>[^\\n\\r\\s]+)[\\s\\S]*?chart:s*(?<depName>[^\\n\\r\\s]+)", 'repoURL:s*(?<registryUrls>https?://[^\\n\\r]+)[\\s\\S]*?targetRevision:s*(?<currentValue>[^\\n\\r\\s]+)[\\s\\S]*?chart:s*(?<depName>[^\\n\\r\\s]+)',
"repoURL:s*'(?<registryUrls>https?://[^']+)'[\\s\\S]*?targetRevision:s*'(?<currentValue>[^']+)'[\\s\\S]*?chart:s*'(?<depName>[^']+)'", "repoURL:s*'(?<registryUrls>https?://[^']+)'[\\s\\S]*?targetRevision:s*'(?<currentValue>[^']+)'[\\s\\S]*?chart:s*'(?<depName>[^']+)'",
'repoURL:s*"(?<registryUrls>https?://[^"]+)"[\\s\\S]*?targetRevision:s*"(?<currentValue>[^"]+)"[\\s\\S]*?chart:s*"(?<depName>[^"]+)"', 'repoURL:s*"(?<registryUrls>https?://[^"]+)"[\\s\\S]*?targetRevision:s*"(?<currentValue>[^"]+)"[\\s\\S]*?chart:s*"(?<depName>[^"]+)"',
], ],
datasourceTemplate: "helm", datasourceTemplate: 'helm',
versioningTemplate: "semver", versioningTemplate: 'semver',
}, },
], ],
} }