diff --git a/.github/renovate.json5 b/.github/renovate.json5 index ed72e0c0f88..ca9c2a81319 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -6,7 +6,7 @@ configMigration: true, dependencyDashboard: false, ignorePaths: [ - "**/tests/**", + '**/tests/**', ], customManagers: [ { @@ -40,7 +40,7 @@ { commitMessageTopic: 'MSRV (1 version)', matchManagers: [ - 'regex', + 'custom.regex', ], matchPackageNames: [ 'MSRV:1', @@ -53,12 +53,12 @@ { commitMessageTopic: 'MSRV (3 versions)', matchManagers: [ - 'regex', + 'custom.regex', ], matchPackageNames: [ 'MSRV:3', ], - "extractVersion": "^(?\\d+\\.\\d+)", // Drop the patch version + extractVersion: '^(?\\d+\\.\\d+)', // Drop the patch version schedule: [ '* * * * *', ],