use strict

This commit is contained in:
Morten Olsen
2025-12-04 23:33:14 +01:00
parent 1325e57188
commit 3062e83482

View File

@@ -1,33 +1,30 @@
{ {
$schema: 'https://docs.renovatebot.com/renovate-schema.json', $schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [ extends: ["config:recommended"],
'config:recommended', minimumReleaseAge: "2 days",
], internalChecksFilter: "strict",
minimumReleaseAge: '2 days',
packageRules: [ packageRules: [
{ {
groupName: 'Docker images', groupName: "Docker images",
groupSlug: 'dockerimages', groupSlug: "dockerimages",
matchDatasources: [ matchDatasources: ["docker"],
'docker',
],
pinDigests: true, pinDigests: true,
}, },
], ],
customManagers: [ customManagers: [
{ {
customType: 'regex', customType: "regex",
managerFilePatterns: [ managerFilePatterns: [
'/.*/templates/.*\\.yaml$/', "/.*/templates/.*\\.yaml$/",
'/.*/templates/.*\\.yml$/', "/.*/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",
}, },
], ],
} }