From 695dabe7d3a973eedb95b9b2d08bf9ffb3ebd71b Mon Sep 17 00:00:00 2001 From: fengmk2 Date: Thu, 2 Apr 2026 08:15:55 +0000 Subject: [PATCH] chore: use `matchDepNames` for vite-task crates in renovate config (#1217) `matchPackageNames` matches against the git URL for Cargo git dependencies, not the crate name. This caused the disable rule to have no effect, resulting in unwanted update PRs. Closes #1208 Closes #1203 --- .github/renovate.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 3d180b124d..f7675db06b 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -15,14 +15,13 @@ "enabled": false }, { - "matchPackageNames": [ + "matchDepNames": [ "fspy", "vite_glob", "vite_path", "vite_str", "vite_task", - "vite_workspace", - "https://github.com/voidzero-dev/vite-task" + "vite_workspace" ], "enabled": false }