Fixing customManagers.
Renovate / renovate (push) Successful in 1m18s

This commit is contained in:
2025-09-29 06:12:13 -04:00
parent 289ac6f3a5
commit 8ba6b7f54c
+37 -11
View File
@@ -3,22 +3,48 @@
"extends": ["local>trez/renovate-config"],
"customManagers": [
{
"description": "Update flarectl version in workflows",
"fileMatch": [
".github/workflows/.*\\.ya?ml$",
".gitea/workflows/.*\\.ya?ml$"
],
"matchStrings": [
"(FLARECTL_VERSION|HC_VAULT_VERSION|TEA_VERSION|RENOVATE_VERSION):\\s*\"(?<currentValue>.*?)\""
],
"matchStrings": ["FLARECTL_VERSION: \\\"(?<currentValue>.*?)\\\""],
"datasourceTemplate": "github-releases",
"depNameTemplate": "{{depName}}",
"versioningTemplate": "semver",
"depNameTemplates": {
"FLARECTL_VERSION": "cloudflare/cloudflare-go",
"HC_VAULT_VERSION": "hashicorp/vault",
"TEA_VERSION": "go-gitea/tea",
"RENOVATE_VERSION": "renovatebot/renovate"
}
"packageNameTemplate": "cloudflare/cloudflare-go",
"versioningTemplate": "semver"
},
{
"description": "Update Vault version in workflows",
"fileMatch": [
".github/workflows/.*\\.ya?ml$",
".gitea/workflows/.*\\.ya?ml$"
],
"matchStrings": ["HC_VAULT_VERSION: \\\"(?<currentValue>.*?)\\\""],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "hashicorp/vault",
"versioningTemplate": "semver"
},
{
"description": "Update tea CLI version in workflows",
"fileMatch": [
".github/workflows/.*\\.ya?ml$",
".gitea/workflows/.*\\.ya?ml$"
],
"matchStrings": ["TEA_VERSION: \\\"(?<currentValue>.*?)\\\""],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "go-gitea/tea",
"versioningTemplate": "semver"
},
{
"description": "Update Renovate version in workflows",
"fileMatch": [
".github/workflows/.*\\.ya?ml$",
".gitea/workflows/.*\\.ya?ml$"
],
"matchStrings": ["RENOVATE_VERSION: \\\"(?<currentValue>.*?)\\\""],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "renovatebot/renovate",
"versioningTemplate": "semver"
}
]
}