chore: Update renovate to only group rust patch dependencies, leave minor/major dependency updates (and any wasm-bindgen) to their own PR

This commit is contained in:
Nathan Adams 2023-02-07 19:09:01 +01:00 committed by Aaron Hill
parent ac9b6e3ecb
commit 83f88a6f3e
1 changed files with 7 additions and 1 deletions

View File

@ -6,7 +6,13 @@
"packageRules": [
{
"matchLanguages": ["rust"],
"groupName": "Rust dependencies",
"matchUpdateTypes": "patch",
"excludePackageNames": ["wasm-bindgen"],
"groupName": "Rust dependency patches",
"extends": ["schedule:weekly"]
},
{
"matchLanguages": ["rust"],
"extends": ["schedule:weekly"]
},
{