Manager explicitly enabled in "enabledManagers" config, but found no results. #29663
-
What would you like help with?I would like help with my configuration How are you running Renovate?Self-hosted If you're self-hosting Renovate, tell us which platform (GitHub, GitLab, etc) and which version of Renovate.GitLab Please tell us more about your question or problemI want to use custom managers like this.
I use Here is my {
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"enabledManagers": [
"custom.regex",
"kubernetes"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^\\.renovate/renovate\\.txt$"
],
"matchStrings": [
"depName=(?<depName>.+?)packageName=(?<packageName>.+?)datasource=(?<datasource>[a-z-]+?)versioning=(?<versioning>[a-z-]+?)version=(?<currentValue>.+?)"
]
}
],
"kubernetes": {
"fileMatch": [
"\\.yaml$"
]
}
} Here is depName=pocketbase packageName=pocketbase/pocketbase datasource=github-releases versioning=semver-coerced version=v0.22.12 Logs (if relevant)No response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You don't need to use enabledManagers. It's only useful if you want to limit managers to a select few. If you do use it, and any of the enabled managers don't return dependencies, then you'll get this warning. Most likely it's because your matching isn't working |
Beta Was this translation helpful? Give feedback.
You don't need to use enabledManagers. It's only useful if you want to limit managers to a select few.
If you do use it, and any of the enabled managers don't return dependencies, then you'll get this warning. Most likely it's because your matching isn't working