mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
26 lines
633 B
Text
26 lines
633 B
Text
{
|
|
"schedule": [
|
|
"before 3am on the first day of the month"
|
|
],
|
|
"semanticCommits": "enabled",
|
|
"configMigration": true,
|
|
"packageRules": [
|
|
// Goals:
|
|
// - Rollup safe upgrades to reduce CI runner load
|
|
// - Have lockfile and manifest in-sync
|
|
{
|
|
"matchManagers": ["cargo"],
|
|
"matchCurrentVersion": ">=0.1.0",
|
|
"matchUpdateTypes": ["patch"],
|
|
"automerge": true,
|
|
"groupName": "compatible",
|
|
},
|
|
{
|
|
"matchManagers": ["cargo"],
|
|
"matchCurrentVersion": ">=1.0.0",
|
|
"matchUpdateTypes": ["minor"],
|
|
"automerge": true,
|
|
"groupName": "compatible",
|
|
},
|
|
],
|
|
}
|