From 32b66747f4a0856d10ddfea3dc5cf8a75f5b0834 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 29 May 2026 15:24:56 +0100 Subject: [PATCH] Fix renovate for pnpm 11 overrides (#33667) --- .github/renovate.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 928cfd4ad0..9439292139 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -13,13 +13,17 @@ }, { "description": "Separate updates to overrides from other groups", - "matchDepTypes": ["pnpm.overrides"], + "matchManagers": ["npm"], + "matchFileNames": ["pnpm-workspace.yaml"], + "matchDepTypes": ["pnpm-workspace.overrides"], "groupSlug": null }, { "description": "Disable any major updates to overrides as this almost always is wrong", - "matchDepTypes": ["pnpm.overrides"], "matchUpdateTypes": ["major"], + "matchManagers": ["npm"], + "matchFileNames": ["pnpm-workspace.yaml"], + "matchDepTypes": ["pnpm-workspace.overrides"], "enabled": false } ],