Skip to content

Commit

Permalink
feat: 支持renovate自动升级依赖版本
Browse files Browse the repository at this point in the history
  • Loading branch information
mmdapl committed Dec 21, 2024
1 parent 85c1bec commit 02e10fa
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -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
}
]
}

0 comments on commit 02e10fa

Please sign in to comment.