Update renovate.json5

This commit is contained in:
2025-07-29 22:22:49 +00:00
parent 8583ccd249
commit e97f5a3b57

View File

@@ -1,6 +1,18 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true, "dependencyDashboard": true,
"regexManagers": [
{
"fileMatch": ["kustomization\\.yaml"],
"matchStrings": [
"- name:\\s*(?<depName>\\S+)\\s*\\n\\s*newName:\\s*(?<lookupName>\\S+)\\s*\\n\\s*newTag:\\s*(?<currentValue>[a-f0-9]{7,40})"
],
"datasourceTemplate": "docker",
"versioningTemplate": "loose",
"extractVersionTemplate": "{{ currentValue }}",
"lookupNameTemplate": "{{ lookupName }}"
},
],
"packageRules": [ "packageRules": [
// Fully automatically update the container version referenced in the deployment // Fully automatically update the container version referenced in the deployment
{ {
@@ -8,10 +20,12 @@
"automerge": true, "automerge": true,
"automergeType": "branch", "automergeType": "branch",
"ignoreTests": true, "ignoreTests": true,
"commitMessagePrefix": "[skip ci]" "commitMessagePrefix": "[skip ci]",
"registryUrls": [ "registryUrls": [
"https://git.kluster.moll.re" "https://git.kluster.moll.re"
] ],
// Since the images use the commit sha as their tag, simply match any tag
"versioning": "regex:(.*)"
} }
], ],
} }