1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-02-03 02:23:38 +08:00
Files
408CSFamily/.github/renovate.json5
2024-12-21 20:38:08 +08:00

25 lines
651 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 参考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
}
]
}