From cf731bbdef7e270a886a1faf497b5873570e6559 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=94=AF=E7=84=B6?= Date: Tue, 16 Dec 2025 16:11:25 +0800 Subject: [PATCH 1/2] fix: update matchPackageNames to exclude 'github' actions refs: https://github.com/eslint/eslint/pull/20397#discussion_r2618581428 --- .github/renovate/base.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate/base.json5 b/.github/renovate/base.json5 index 43c27e8..0948c2f 100644 --- a/.github/renovate/base.json5 +++ b/.github/renovate/base.json5 @@ -22,7 +22,7 @@ extends: ["helpers:pinGitHubActionDigests"], addLabels: ["deps:actions"], matchManagers: ["github-actions"], - matchPackageNames: ["!actions/**"] + matchPackageNames: ["!(actions|github)/**"] }, { description: "Use the deps:npm label for npm manager packages (this means Renovate's npm manager).", From 8d566e6f8fbb3bae4a8d9aeedca4198772f46d4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=94=AF=E7=84=B6?= Date: Tue, 16 Dec 2025 16:16:17 +0800 Subject: [PATCH 2/2] Update matchPackageNames to exclude actions and github --- .github/renovate/base.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate/base.json5 b/.github/renovate/base.json5 index 0948c2f..ac40f27 100644 --- a/.github/renovate/base.json5 +++ b/.github/renovate/base.json5 @@ -22,7 +22,7 @@ extends: ["helpers:pinGitHubActionDigests"], addLabels: ["deps:actions"], matchManagers: ["github-actions"], - matchPackageNames: ["!(actions|github)/**"] + matchPackageNames: ["!actions/**", "!github/**"], }, { description: "Use the deps:npm label for npm manager packages (this means Renovate's npm manager).",