From 4396f312da82d5485bfddb8fd25354bf6018a25d Mon Sep 17 00:00:00 2001 From: Viktor Tsvetkov <142901247+vtsvetkov-splunk@users.noreply.github.com> Date: Mon, 15 Jan 2024 12:48:25 +0100 Subject: [PATCH] chore(renovate): ignore nodejs required version updates --- renovate.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 974362834..eebeb4e27 100644 --- a/renovate.json +++ b/renovate.json @@ -20,6 +20,7 @@ "allowedVersions": "<2.0.0" }, { + "description": "Ignore packages that needs for SUI", "matchManagers": [ "npm" ], @@ -52,19 +53,28 @@ "enabled": false }, { + "description": "Ignore msw-storybook-addon since they bumps incorrectly while canary version is using", "matchManagers": [ "npm" ], "matchPackageNames": [ "msw-storybook-addon" ], - "allowedVersions": "!/next|canary/" + "dependencyDashboardApproval": true }, { + "description": "Update package.json versions together with yarn.lock", "matchManagers": [ "npm" ], "rangeStrategy": "bump" + }, + { + "description": "Ignore NodeJS", + "matchPackageNames": ["node"], + "matchManagers": ["npm"], + "matchDepTypes": [ "engines" ], + "dependencyDashboardApproval": true } ] }