From 1793b5321029392f859d014ed053483af48d3b2d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 7 May 2025 17:26:03 +0000 Subject: [PATCH] Migrate config .github/renovate.json5 --- .github/renovate.json5 | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 812f5c2f..69bdc002 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,16 +1,16 @@ { - $schema: "https://docs.renovatebot.com/renovate-schema.json", + $schema: 'https://docs.renovatebot.com/renovate-schema.json', extends: [ - "config:recommended" + 'config:recommended', ], configMigration: true, prHourlyLimit: 1, - schedule: [ // utc timezone + schedule: [ 'after 6am on monday', ], dockerfile: { - fileMatch: [ - 'Earthfile', + managerFilePatterns: [ + '/Earthfile/', ], }, labels: [ @@ -18,23 +18,23 @@ ], packageRules: [ { - // group packages in the same PR according to data source & update type matchManagers: [ - 'npm', 'github-actions', + 'npm', + 'github-actions', ], matchUpdateTypes: [ 'minor', 'patch', ], - groupName: "{{datasource}} (non-major)", + groupName: '{{datasource}} (non-major)', addLabels: [ 'non-major', ], }, { - // add major label to major updates matchManagers: [ - 'npm', 'github-actions', + 'npm', + 'github-actions', ], matchUpdateTypes: [ 'major',