diff --git a/renovate.json b/renovate.json index 5db72dd..51cb8f9 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,37 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended" + ], + "branchPrefix": "renovate-", + "branchNameStrict": true, + "ignorePaths": [ + "**/ui/**" + ], + "packageRules": [ + { + "matchPackageNames": [ + "docker.io/node" + ], + "allowedVersions": "<= 18" + } + ], + "customDatasources": { + "dnsmasq": { + "defaultRegistryUrlTemplate": "https://dnsmasq.org/", + "format": "html" + } + }, + "customManagers": [ + { + "customType": "regex", + "fileMatch": [ + "build-images.sh" + ], + "matchStrings": [ + "DNSMASQ_VERSION=(?[^\\s]+)$" + ], + "depNameTemplate": "dnsmasq", + "datasourceTemplate": "dnsmasq" + } ] }