From 1fb17a78d22f1bb788581aef197fea290a0c49c9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 08:11:44 +0000 Subject: [PATCH] chore(config): migrate config renovate.json5 --- renovate.json5 | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) 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', + }, + ], }