marine/.github/renovate.json

28 lines
601 B
JSON
Raw Permalink Normal View History

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
2022-11-28 18:09:55 +02:00
"config:base",
":semanticCommitTypeAll(chore)"
],
2022-11-28 18:09:55 +02:00
"enabledManagers": ["cargo", "npm", "github-actions"],
"schedule": "every weekend",
"packageRules": [
{
"matchPackagePatterns": ["^@wasmer", "^wasmer", "^wasm-bindgen"],
"enabled": false
},
{
2022-11-28 18:09:55 +02:00
"matchDepTypes": ["devDependencies"],
"prPriority": -1
},
{
2022-11-28 18:09:55 +02:00
"matchUpdateTypes": ["major"],
"prConcurrentLimit": 1
},
{
"matchManagers": ["github-actions"],
2022-11-28 18:09:55 +02:00
"prPriority": 1
}
]
}