typos/.github/renovate.json5

71 lines
1.6 KiB
Text
Raw Normal View History

2022-12-01 12:20:06 -05:00
{
schedule: [
'before 5am on the first day of the month',
2022-12-05 10:33:56 -05:00
],
semanticCommits: 'enabled',
configMigration: true,
dependencyDashboard: true,
regexManagers: [
2023-03-29 15:33:22 -04:00
{
2023-08-22 12:07:34 -04:00
customType: 'regex',
fileMatch: [
'^rust-toolchain\\.toml$',
'Cargo.toml$',
'clippy.toml$',
'\\.clippy.toml$',
'^\\.github/workflows/ci.yml$',
'^\\.github/workflows/rust-next.yml$',
],
matchStrings: [
'MSRV.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)',
'(?<currentValue>\\d+\\.\\d+(\\.\\d+)?).*?MSRV',
],
depNameTemplate: 'rust',
packageNameTemplate: 'rust-lang/rust',
datasourceTemplate: 'github-releases',
2023-04-17 10:54:05 -04:00
},
2023-03-29 15:33:22 -04:00
],
packageRules: [
2023-03-29 15:33:22 -04:00
{
commitMessageTopic: 'MSRV',
matchManagers: [
'regex',
],
matchPackageNames: [
'rust',
],
minimumReleaseAge: '126 days', // 3 releases * 6 weeks per release * 7 days per week
2023-08-22 12:06:55 -04:00
internalChecksFilter: 'strict',
2023-09-20 10:05:41 -04:00
"extractVersion": "^(?<version>\\d+\\.\\d+)", // Drop the patch version
schedule: [
2023-08-23 10:35:47 -04:00
'* * * * *',
],
2023-03-29 15:33:22 -04:00
},
2022-12-01 12:20:06 -05:00
// 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,
2023-08-14 16:06:53 -04:00
groupName: 'compatible',
2022-12-01 12:20:06 -05:00
},
2022-12-01 16:32:14 -05:00
{
matchManagers: [
'cargo',
],
matchCurrentVersion: '>=1.0.0',
matchUpdateTypes: [
'minor',
],
automerge: true,
2023-08-14 16:06:53 -04:00
groupName: 'compatible',
2022-12-01 16:32:14 -05:00
},
2022-12-01 12:20:06 -05:00
],
}