Compare commits

...

2 commits

Author SHA1 Message Date
9584f2ccd2 fix(renovate): update file match pattern for YAML files
- use glob pattern instead of regex
2025-05-05 15:25:01 +02:00
108127715c chore(config): migrate config .renovaterc.json 2025-05-05 13:12:44 +00:00

View file

@ -1,7 +1,11 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>infrastructure/renovate-config"],
"extends": [
"local>infrastructure/renovate-config"
],
"argocd": {
"fileMatch": ["\\.yml$"]
"managerFilePatterns": [
"*.yml"
]
}
}