typos/.github/renovate.json5

24 lines
553 B
Text
Raw Normal View History

2022-12-01 12:20:06 -05:00
{
"semanticCommits": "enabled",
"configMigration": true,
"packageRules": [
// Goals:
// - Rollup safe upgrades to reduce CI runner load
// - Have lockfile and manifest in-sync
{
"matchManagers": ["cargo"],
2022-12-01 16:32:14 -05:00
"matchCurrentVersion": ">=0.1.0",
2022-12-01 12:20:06 -05:00
"matchUpdateTypes": ["patch"],
"automerge": true,
"groupName": "safe",
},
2022-12-01 16:32:14 -05:00
{
"matchManagers": ["cargo"],
"matchCurrentVersion": ">=1.0.0",
"matchUpdateTypes": ["minor"],
"automerge": true,
"groupName": "safe",
},
2022-12-01 12:20:06 -05:00
],
}