From 02e10fafa7efecfe4f7f8bbcf21321cc6d3e7eb7 Mon Sep 17 00:00:00 2001 From: chufan Date: Sat, 21 Dec 2024 20:38:08 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=94=AF=E6=8C=81`renovate`=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E5=8D=87=E7=BA=A7=E4=BE=9D=E8=B5=96=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/renovate.json5 | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/renovate.json5 diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 0000000..935aa95 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,24 @@ +// 参考:https://docs.renovatebot.com/configuration-options/#configuration-options +{ + "extends": ["config:base"], + "labels": ["PR:dependencies"], + "baseBranches": ["next"], + "schedule": ["before 3am on Friday"], + "additionalBranchPrefix": "{{parentDir}}-", + "branchConcurrentLimit": 6, + // 触发CI流水线 + "requiredStatusChecks": [ + "CI" + ], + "packageRules": [ + { + "matchDepTypes": ["devDependencies"], + "matchUpdateTypes": ["minor", "patch"], + "schedule": ["at any time"], + "prConcurrentLimit": 4, + "platformAutomerge": true, + "addLabels": ["devDependencies"], + "automerge": false + } + ] +}