From 7345627c7c6976223bdd4b1035aa1d34c33e32ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=A5=E6=B5=A9?= <37316281+yanhao98@users.noreply.github.com> Date: Mon, 8 Dec 2025 09:59:06 +0800 Subject: [PATCH] Add Playwright package group configuration --- default.json5 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/default.json5 b/default.json5 index 8ec0b92..f5c344f 100644 --- a/default.json5 +++ b/default.json5 @@ -79,16 +79,19 @@ // "automergeType": "branch" }, + // https://gitlab.com/gitlab-ci-utils/renovate-config/-/blob/main/presets/playwright.json?ref_type=heads { "groupName": "Playwright packages", "groupSlug": "playwright", "description": "Group Playwright core and related packages", + "matchDatasources": ["docker", "npm"], "matchPackageNames": [ "mcr.microsoft.com/playwright", // CI 的 Playwright 镜像 "/^@playwright\\//", // 匹配所有 @playwright/ 开头的包,例如 @playwright/test "playwright-core", // "playwright" // 匹配核心包 playwright ], + "matchUpdateTypes": ["major", "minor", "patch", "digest"], "minimumReleaseAge": "3 days" // 设置 Playwright 相关包的发布稳定期为 3 天 },