1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-02-02 18:20:26 +08:00

feat: 支持renovate自动升级依赖版本

This commit is contained in:
chufan
2024-12-21 20:38:08 +08:00
parent 85c1becce8
commit 02e10fafa7

24
.github/renovate.json5 vendored Normal file
View File

@@ -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
}
]
}