diff --git a/renovate.json5 b/renovate.json5 index 24210ab..933b917 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -1,25 +1,31 @@ { - $schema: "https://docs.renovatebot.com/renovate-schema.json", - extends: ["config:recommended"], + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', + ], customManagers: [ { - customType: "jsonata", - fileFormat: "yaml", - fileMatch: "bleep.yaml", + customType: 'jsonata', + fileFormat: 'yaml', + managerFilePatterns: [ + '/bleep.yaml/', + ], matchStrings: [ - '{"currentValue": $."$version"}' + '{"currentValue": $."$version"}', ], - datasourceTemplate: "maven", - depNameTemplate: "build.bleep:bleep-core_3" + datasourceTemplate: 'maven', + depNameTemplate: 'build.bleep:bleep-core_3', }, { - customType: "jsonata", - fileFormat: "yaml", - fileMatch: "bleep.yaml", + customType: 'jsonata', + fileFormat: 'yaml', + managerFilePatterns: [ + '/bleep.yaml/', + ], matchStrings: [ - 'projects.*.dependencies.(module ? module : $).[$match($, /(.*):([^:]*)/)].{"depName": $replace(groups[0], /::(.*)/, ":$1_2.13"), "currentValue": groups[1]}' + 'projects.*.dependencies.(module ? module : $).[$match($, /(.*):([^:]*)/)].{"depName": $replace(groups[0], /::(.*)/, ":$1_2.13"), "currentValue": groups[1]}', ], - datasourceTemplate: "maven", - } - ] + datasourceTemplate: 'maven', + }, + ], }