diff --git a/.github/renovate.json b/.github/renovate.json index 159ca093e2..2155b7509a 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,14 +1,21 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base", + "config:recommended", ":semanticCommitsDisabled" ], - "enabledManagers": ["regex"], - "regexManagers": [ + "enabledManagers": [ + "custom.regex" + ], + "customManagers": [ { - "fileMatch": ["src/site/site.xml"], - "matchStrings": ["(?.*?)<\/version>"], + "customType": "regex", + "fileMatch": [ + "src/site/site.xml" + ], + "matchStrings": [ + "(?.*?)" + ], "depNameTemplate": "org.apache.maven.skins:maven-fluido-skin", "datasourceTemplate": "maven" } @@ -17,5 +24,7 @@ "dependencies" ], "rebaseWhen": "conflicted", - "schedule": ["on the first day of the month"] + "schedule": [ + "on the first day of the month" + ] }