Adding customManagers for workflow env dependencies.

This commit is contained in:
2025-09-29 05:58:50 -04:00
parent 2bb977f303
commit 3b3cb6ff48
+20 -2
View File
@@ -1,6 +1,24 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>Trez/renovate-config"
"extends": ["local>Trez/renovate-config"],
"customManagers": [
{
"fileMatch": [
".github/workflows/.*\\.ya?ml$",
".gitea/workflows/.*\\.ya?ml$"
],
"matchStrings": [
"(FLARECTL_VERSION|HC_VAULT_VERSION|TEA_VERSION|RENOVATE_VERSION):\\s*\"(?<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"
}
}
]
}