clap/.github/renovate.json5

46 lines
1.3 KiB
Text
Raw Normal View History

2022-12-01 17:23:46 +00:00
{
2022-12-05 15:36:14 +00:00
"schedule": [
"before 3am on the first day of the month"
],
2022-12-01 17:23:46 +00:00
"semanticCommits": "enabled",
"configMigration": true,
"packageRules": [
// Goals:
// - Keep version reqs low, ignoring compatible normal/build dependencies
// - Take advantage of latest dev-dependencies
// - Rollup safe upgrades to reduce CI runner load
2022-12-01 21:29:31 +00:00
// - Help keep number of versions down by always using latest breaking change
2022-12-01 17:23:46 +00:00
// - Have lockfile and manifest in-sync
{
"matchManagers": ["cargo"],
2022-12-01 21:29:31 +00:00
"matchDepTypes": ["build-dependencies", "dependencies"],
"matchCurrentVersion": ">=0.1.0",
2022-12-01 17:23:46 +00:00
"matchUpdateTypes": ["patch"],
2022-12-01 21:29:31 +00:00
"enabled": false,
2022-12-01 17:23:46 +00:00
},
{
"matchManagers": ["cargo"],
2022-12-01 21:29:31 +00:00
"matchDepTypes": ["build-dependencies", "dependencies"],
"matchCurrentVersion": ">=1.0.0",
2022-12-01 17:23:46 +00:00
"matchUpdateTypes": ["minor"],
"enabled": false,
},
{
"matchManagers": ["cargo"],
2022-12-01 21:29:31 +00:00
"matchDepTypes": ["dev-dependencies"],
"matchCurrentVersion": ">=0.1.0",
2022-12-01 17:23:46 +00:00
"matchUpdateTypes": ["patch"],
2022-12-01 21:29:31 +00:00
"automerge": true,
2022-12-05 15:36:14 +00:00
"groupName": "compatible (dev)",
2022-12-01 21:29:31 +00:00
},
{
"matchManagers": ["cargo"],
"matchDepTypes": ["dev-dependencies"],
"matchCurrentVersion": ">=1.0.0",
"matchUpdateTypes": ["minor"],
"automerge": true,
2022-12-05 15:36:14 +00:00
"groupName": "compatible (dev)",
2022-12-01 17:23:46 +00:00
},
],
}