diff --git a/.github/renovate.json b/.github/renovate.json index 7023b06cd..ad406add7 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -12,25 +12,23 @@ "semanticCommits": "enabled", "gitAuthor": "traefiker <30906710+traefiker@users.noreply.github.com>", "rebaseWhen": "conflicted", - "labels": [ - "📌 dependencies" - ], - "enabledManagers": ["github-actions", "regex"], - "regexManagers": [ + "labels": ["📌 dependencies"], + "enabledManagers": ["github-actions", "custom.regex"], + "customManagers": [ { + "customType": "regex", "datasourceTemplate": "docker", - "fileMatch": [ "Chart.yaml" ], + "fileMatch": ["Chart.yaml"], "matchStrings": [ "#\\s*renovate: image=(?.*?)\\s+appVersion:\\s*[\"']?(?[\\w+\\.\\-]*)" ] }, { + "customType": "regex", "datasourceTemplate": "docker", - "fileMatch": [ "Makefile" ], + "fileMatch": ["Makefile"], "versioningTemplate": "docker", - "matchStrings": [ - "IMAGE_(.+)=(?.*?):(?.*)" - ] + "matchStrings": ["IMAGE_(.+)=(?.*?):(?.*)"] } ] }