2022-12-01 11:20:06 -06:00
|
|
|
{
|
2023-04-17 08:51:48 -05:00
|
|
|
schedule: [
|
2023-08-02 11:11:52 -05:00
|
|
|
'before 5am on the first day of the month',
|
2022-12-05 09:33:56 -06:00
|
|
|
],
|
2023-04-17 08:51:48 -05:00
|
|
|
semanticCommits: 'enabled',
|
2024-01-02 09:56:35 -06:00
|
|
|
commitMessageLowerCase: 'never',
|
2023-04-17 08:51:48 -05:00
|
|
|
configMigration: true,
|
|
|
|
dependencyDashboard: true,
|
2023-09-26 08:16:33 -05:00
|
|
|
customManagers: [
|
2023-03-29 14:33:22 -05:00
|
|
|
{
|
2023-08-22 11:07:34 -05:00
|
|
|
customType: 'regex',
|
2023-04-17 08:51:48 -05:00
|
|
|
fileMatch: [
|
|
|
|
'^rust-toolchain\\.toml$',
|
|
|
|
'Cargo.toml$',
|
|
|
|
'clippy.toml$',
|
|
|
|
'\\.clippy.toml$',
|
|
|
|
'^\\.github/workflows/ci.yml$',
|
|
|
|
'^\\.github/workflows/rust-next.yml$',
|
|
|
|
],
|
|
|
|
matchStrings: [
|
2024-02-15 10:03:14 -06:00
|
|
|
'STABLE.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)',
|
|
|
|
'(?<currentValue>\\d+\\.\\d+(\\.\\d+)?).*?STABLE',
|
2023-04-17 08:51:48 -05:00
|
|
|
],
|
2024-02-15 10:03:14 -06:00
|
|
|
depNameTemplate: 'STABLE',
|
2023-04-17 08:51:48 -05:00
|
|
|
packageNameTemplate: 'rust-lang/rust',
|
|
|
|
datasourceTemplate: 'github-releases',
|
2023-04-17 09:54:05 -05:00
|
|
|
},
|
2023-03-29 14:33:22 -05:00
|
|
|
],
|
2023-04-17 08:51:48 -05:00
|
|
|
packageRules: [
|
2023-03-29 14:33:22 -05:00
|
|
|
{
|
2024-03-21 12:20:47 -05:00
|
|
|
commitMessageTopic: 'Rust Stable',
|
2023-04-17 08:51:48 -05:00
|
|
|
matchManagers: [
|
2023-12-03 09:19:35 +00:00
|
|
|
'custom.regex',
|
2023-04-17 08:51:48 -05:00
|
|
|
],
|
2024-10-21 15:39:54 +08:00
|
|
|
matchDepNames: [
|
2024-02-15 10:03:14 -06:00
|
|
|
'STABLE',
|
2023-04-17 08:51:48 -05:00
|
|
|
],
|
2023-09-26 08:16:47 -05:00
|
|
|
extractVersion: '^(?<version>\\d+\\.\\d+)', // Drop the patch version
|
2023-08-23 09:24:15 -05:00
|
|
|
schedule: [
|
2023-08-23 09:35:47 -05:00
|
|
|
'* * * * *',
|
2023-08-23 09:24:15 -05:00
|
|
|
],
|
2024-04-16 21:46:56 -05:00
|
|
|
automerge: true,
|
2023-03-29 14:33:22 -05:00
|
|
|
},
|
2022-12-01 11:20:06 -06:00
|
|
|
// Goals:
|
|
|
|
// - Rollup safe upgrades to reduce CI runner load
|
|
|
|
// - Have lockfile and manifest in-sync
|
|
|
|
{
|
2023-04-17 08:51:48 -05:00
|
|
|
matchManagers: [
|
|
|
|
'cargo',
|
|
|
|
],
|
|
|
|
matchCurrentVersion: '>=0.1.0',
|
|
|
|
matchUpdateTypes: [
|
|
|
|
'patch',
|
|
|
|
],
|
|
|
|
automerge: true,
|
2023-08-14 15:06:53 -05:00
|
|
|
groupName: 'compatible',
|
2022-12-01 11:20:06 -06:00
|
|
|
},
|
2022-12-01 15:32:14 -06:00
|
|
|
{
|
2023-04-17 08:51:48 -05:00
|
|
|
matchManagers: [
|
|
|
|
'cargo',
|
|
|
|
],
|
|
|
|
matchCurrentVersion: '>=1.0.0',
|
|
|
|
matchUpdateTypes: [
|
|
|
|
'minor',
|
2024-01-24 08:40:56 -06:00
|
|
|
'patch',
|
2023-04-17 08:51:48 -05:00
|
|
|
],
|
|
|
|
automerge: true,
|
2023-08-14 15:06:53 -05:00
|
|
|
groupName: 'compatible',
|
2022-12-01 15:32:14 -06:00
|
|
|
},
|
2022-12-01 11:20:06 -06:00
|
|
|
],
|
|
|
|
}
|