diff --git a/renovate.json b/renovate.json index c55a5ee..eb050ab 100644 --- a/renovate.json +++ b/renovate.json @@ -1,23 +1,36 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:base"], + "extends": [ + "config:recommended" + ], "prHourlyLimit": 3, - "regexManagers": [ + "customManagers": [ { - "fileMatch": ["Dockerfile$"], - "matchStrings": ["ARG PAR2CMDLINE_VERSION=(?[0-9\\.]+)"], + "customType": "regex", + "fileMatch": [ + "Dockerfile$" + ], + "matchStrings": [ + "ARG PAR2CMDLINE_VERSION=(?[0-9\\.]+)" + ], "datasourceTemplate": "github-releases", "depNameTemplate": "animetosho/par2cmdline-turbo" } ], "packageRules": [ { - "matchDatasources": ["github-releases"], - "matchDepNames": ["animetosho/par2cmdline-turbo"], + "matchDatasources": [ + "github-releases" + ], + "matchDepNames": [ + "animetosho/par2cmdline-turbo" + ], "extractVersion": "^(?[0-9\\.]+)$" }, { - "matchUpdateTypes": ["major"], + "matchUpdateTypes": [ + "major" + ], "dependencyDashboardApproval": true } ]