fix(config): 🐛 修改renovate bot的配置

This commit is contained in:
nongyehong
2024-12-13 00:09:36 +08:00
committed by Dawn
parent f2728c5145
commit 23511f78cd
2 changed files with 25 additions and 3 deletions

5
.gitattributes vendored
View File

@@ -1,3 +1,8 @@
# Auto detect text files and perform LF normalization
* text=auto eol=lf
"*.rs" eol=lf
"Cargo.toml" eol=lf
"Cargo.lock" eol=lf
"*.vue" eol=lf
"*.js" eol=lf
"*.ts" eol=lf

View File

@@ -1,6 +1,23 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
"automerge": false,
"dependencyDashboard": true,
"ignoreDeps": [],
"labels": ["dependencies"],
"postUpdateOptions": ["yarnDedupeHighest"],
"prConcurrentLimit": 30,
"prHourlyLimit": 4,
"rebaseWhen": "conflicted",
"schedule": "on monday at 9:00am",
"timezone": "Asia/Shanghai",
"vulnerabilityAlerts": {
"labels": ["security"],
"automerge": true
},
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"]
}
],
"updateInternalDeps": true
}