From 5fadf9321f910665168a24002fb89751c9414d7d Mon Sep 17 00:00:00 2001 From: Mira Weller Date: Wed, 22 Jun 2022 10:42:30 +0200 Subject: [PATCH] feat: check for nw.js version via renovate issue #2823 --- renovate.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 87756f284c..9dc9233a5f 100644 --- a/renovate.json +++ b/renovate.json @@ -38,5 +38,14 @@ } ], "timezone": "Europe/Berlin", - "schedule": ["on the 2nd and 4th day instance on sunday after 9pm"] + "schedule": ["on the 2nd and 4th day instance on sunday after 9pm"], + "regexManagers": [ + { + "fileMatch": ["^visualization/package.json$"], + "matchStrings": ["\"nwVersion\": \"(?.*?)\""], + "depNameTemplate": "nwjs/nw.js", + "datasourceTemplate": "github-tags", + "extractVersionTemplate": "^nw-v(?.*)$" + } + ] }