Some checks failed
CI / Lint (bash) (push) Has been cancelled
CI / Lint (markdown) (push) Has been cancelled
CI / Lint (nickel) (push) Has been cancelled
CI / Lint (nushell) (push) Has been cancelled
CI / Lint (rust) (push) Has been cancelled
CI / Code Coverage (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Build (macos-latest) (push) Has been cancelled
CI / Build (ubuntu-latest) (push) Has been cancelled
CI / Build (windows-latest) (push) Has been cancelled
CI / Benchmark (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / License Compliance (push) Has been cancelled
43 lines
955 B
JSON
43 lines
955 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"matchManagers": ["cargo"],
|
|
"groupName": "Rust dependencies",
|
|
"schedule": ["before 3am on Monday"]
|
|
},
|
|
{
|
|
"matchManagers": ["npm"],
|
|
"groupName": "npm dependencies",
|
|
"schedule": ["before 3am on Monday"]
|
|
},
|
|
{
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"groupName": "all non-major dependencies",
|
|
"groupSlug": "all-minor-patch",
|
|
"automerge": true
|
|
},
|
|
{
|
|
"matchDepTypes": ["devDependencies"],
|
|
"automerge": true
|
|
}
|
|
],
|
|
"rust": {
|
|
"enabled": true
|
|
},
|
|
"lockFileMaintenance": {
|
|
"enabled": true,
|
|
"schedule": ["before 3am on the first day of the month"]
|
|
},
|
|
"vulnerabilityAlerts": {
|
|
"enabled": true,
|
|
"labels": ["security"]
|
|
},
|
|
"labels": ["dependencies"],
|
|
"prConcurrentLimit": 3,
|
|
"prHourlyLimit": 2
|
|
}
|