2022-12-01 12:20:06 -05:00
|
|
|
{
|
2023-04-17 09:51:48 -04:00
|
|
|
schedule: [
|
2023-08-02 12:11:52 -04:00
|
|
|
'before 5am on the first day of the month',
|
2022-12-05 10:33:56 -05:00
|
|
|
],
|
2023-04-17 09:51:48 -04:00
|
|
|
semanticCommits: 'enabled',
|
2024-01-02 10:56:35 -05:00
|
|
|
commitMessageLowerCase: 'never',
|
2023-04-17 09:51:48 -04:00
|
|
|
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',
|
2023-04-17 09:51:48 -04:00
|
|
|
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',
|
2023-04-17 09:51:48 -04:00
|
|
|
],
|
2024-02-15 11:03:14 -05:00
|
|
|
depNameTemplate: 'STABLE',
|
2023-04-17 09:51:48 -04:00
|
|
|
packageNameTemplate: 'rust-lang/rust',
|
|
|
|
datasourceTemplate: 'github-releases',
|
2023-04-17 10:54:05 -04:00
|
|
|
},
|
2023-03-29 15:33:22 -04:00
|
|
|
],
|
2023-04-17 09:51:48 -04:00
|
|
|
packageRules: [
|
2023-03-29 15:33:22 -04:00
|
|
|
{
|
2024-03-21 13:20:47 -04:00
|
|
|
commitMessageTopic: 'Rust Stable',
|
2023-04-17 09:51:48 -04:00
|
|
|
matchManagers: [
|
2023-12-03 04:19:35 -05:00
|
|
|
'custom.regex',
|
2023-04-17 09:51:48 -04:00
|
|
|
],
|
|
|
|
matchPackageNames: [
|
2024-02-15 11:03:14 -05:00
|
|
|
'STABLE',
|
2023-04-17 09:51:48 -04:00
|
|
|
],
|
2023-09-26 09:16:47 -04:00
|
|
|
extractVersion: '^(?<version>\\d+\\.\\d+)', // Drop the patch version
|
2023-08-23 10:24:15 -04:00
|
|
|
schedule: [
|
2023-08-23 10:35:47 -04:00
|
|
|
'* * * * *',
|
2023-08-23 10:24:15 -04:00
|
|
|
],
|
2024-04-16 22:46:56 -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
|
|
|
|
{
|
2023-04-17 09:51:48 -04:00
|
|
|
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
|
|
|
{
|
2023-04-17 09:51:48 -04:00
|
|
|
matchManagers: [
|
|
|
|
'cargo',
|
|
|
|
],
|
|
|
|
matchCurrentVersion: '>=1.0.0',
|
|
|
|
matchUpdateTypes: [
|
|
|
|
'minor',
|
2024-01-24 09:40:56 -05:00
|
|
|
'patch',
|
2023-04-17 09:51:48 -04:00
|
|
|
],
|
|
|
|
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
|
|
|
],
|
|
|
|
}
|