From 8992ff98008c45b5b948eb4df726d572b1acae1e Mon Sep 17 00:00:00 2001 From: Boshen Date: Fri, 6 Dec 2024 00:02:25 +0800 Subject: [PATCH] chore: renovate ignore thiserror upgrade --- .github/renovate.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 2339df09..c5c935ff 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,5 +1,13 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["github>Boshen/renovate"], - "ignorePaths": ["**/node_modules/**", "**/fixtures/**"] + "ignorePaths": ["**/node_modules/**", "**/fixtures/**"], + "packageRules": [ + { + "groupName": "ignored crates", + "matchManagers": ["cargo"], + "matchPackageNames": ["thiserror"], + "enabled": false + } + ] }