From 8fecaba3f0b331359fd66b2ae30dae5a41f13fef Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Wed, 1 May 2024 22:20:37 +0200 Subject: [PATCH] ci: Disable Cargo.lock patch updates for 0.x deps --- renovate.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/renovate.json b/renovate.json index 55adb3a2..1775faa0 100644 --- a/renovate.json +++ b/renovate.json @@ -30,6 +30,13 @@ "matchUpdateTypes": ["minor", "patch"], "matchCurrentVersion": "!/^0/", "enabled": false + }, + { + "description": "Prevent spammy patch Cargo.lock updates for 0.x deps", + "matchManagers": ["cargo"], + "matchUpdateTypes": ["patch"], + "matchCurrentVersion": "/^0/", + "enabled": false } ], "postUpdateOptions": ["pnpmDedupe"]