Skip to content

Commit

Permalink
chore(config): migrate config .github/renovate.json5
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 3, 2023
1 parent 623b788 commit 9d3a67e
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
configMigration: true,
dependencyDashboard: false,
ignorePaths: [
"**/tests/**",
'**/tests/**',
],
customManagers: [
{
Expand All @@ -18,7 +18,7 @@
'\bMSRV:1\b.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)',
'(?<currentValue>\\d+\\.\\d+(\\.\\d+)?).*?\bMSRV:1\b',
],
depNameTemplate: 'MSRV:1', // Support 1 version of rustc
depNameTemplate: 'MSRV:1',
packageNameTemplate: 'rust-lang/rust',
datasourceTemplate: 'github-releases',
},
Expand All @@ -31,7 +31,7 @@
'\bMSRV:3\b.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)',
'(?<currentValue>\\d+\\.\\d+(\\.\\d+)?).*?\bMSRV:3\b',
],
depNameTemplate: 'MSRV:3', // Support 3 versions of rustc
depNameTemplate: 'MSRV:3',
packageNameTemplate: 'rust-lang/rust',
datasourceTemplate: 'github-releases',
},
Expand All @@ -40,7 +40,7 @@
{
commitMessageTopic: 'MSRV (1 version)',
matchManagers: [
'regex',
'custom.regex',
],
matchPackageNames: [
'MSRV:1',
Expand All @@ -53,16 +53,16 @@
{
commitMessageTopic: 'MSRV (3 versions)',
matchManagers: [
'regex',
'custom.regex',
],
matchPackageNames: [
'MSRV:3',
],
"extractVersion": "^(?<version>\\d+\\.\\d+)", // Drop the patch version
extractVersion: '^(?<version>\\d+\\.\\d+)',
schedule: [
'* * * * *',
],
minimumReleaseAge: '85 days', // 2 releases back * 6 weeks per release * 7 days per week + 1
minimumReleaseAge: '85 days',
internalChecksFilter: 'strict',
groupName: 'msrv',
},
Expand All @@ -76,9 +76,6 @@
],
groupName: 'gix',
},
// Goals:
// - Rollup safe upgrades to reduce CI runner load
// - Have lockfile and manifest in-sync (implicit rules)
{
matchManagers: [
'cargo',
Expand Down

0 comments on commit 9d3a67e

Please sign in to comment.