diff options
Diffstat (limited to 'renovate.json')
-rw-r--r-- | renovate.json | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/renovate.json b/renovate.json index de95ff5..133076f 100644 --- a/renovate.json +++ b/renovate.json @@ -17,5 +17,15 @@ "matchDepNames": ["github.com/rhysd/actionlint"], "separateMinorPatch": true } + ], + "customManagers": [ + { + "description": "Update deps inside Makefile", + "customType": "regex", + "fileMatch": ["^Makefile$"], + "matchStrings": [ + " \\?= (?<depName>.+?)@(?<currentValue>.+?) # renovate: datasource=(?<datasource>.+?)(?: packageName=(?<packageName>.+?))?( versioning=(?<versioning>.+?))?\\s" + ] + } ] } |