typos/.github/renovate.json5

72 lines
1.6 KiB
Text
Raw Permalink 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',
2024-01-02 10:56:35 -05:00
commitMessageLowerCase: 'never',
configMigration: true,
dependencyDashboard: true,
2023-09-26 09:16:33 -04:00
customManagers: [
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: [
2024-02-15 11:03:14 -05:00
'STABLE.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)',
'(?<currentValue>\\d+\\.\\d+(\\.\\d+)?).*?STABLE',
],
2024-02-15 11:03:14 -05:00
depNameTemplate: 'STABLE',
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: 'Rust Stable',
matchManagers: [
'custom.regex',
],
matchPackageNames: [
2024-02-15 11:03:14 -05:00
'STABLE',
],
2023-09-26 09:16:47 -04:00
extractVersion: '^(?<version>\\d+\\.\\d+)', // Drop the patch version
schedule: [
2023-08-23 10:35:47 -04:00
'* * * * *',
],
automerge: true,
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',
'patch',
],
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
],
}