Files
journal-bot/renovate.json5
Remy Moll 7eab42ac29
All checks were successful
Build container / Build (push) Successful in 41s
Update renovate.json5
2025-07-30 11:31:40 +02:00

32 lines
946 B
Plaintext

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true,
"regexManagers": [
{
"fileMatch": ["^kustomization\\.yaml$"],
"matchStrings": [
"image: (?<depName>[^:]+):(?<currentValue>[^\\s]+)"
],
"datasourceTemplate": "docker",
"versioningTemplate": "loose",
"extractVersionTemplate": "{{ currentValue }}",
"lookupNameTemplate": "{{ depName }}",
},
],
"packageRules": [
// Fully automatically update the container version referenced in the deployment
{
"matchPackageNames": ["@kubernetes-sigs/kustomize"],
"automerge": true,
"automergeType": "branch",
"ignoreTests": true,
"commitMessagePrefix": "[skip ci]",
"registryUrls": [
"https://git.kluster.moll.re"
],
// Since the images use the commit sha as their tag, simply match any tag
"versioning": "regex:(.*)"
}
],
}