From 9483c86333de29d54bfea8dca7cfe497a29a5d08 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 9 Jul 2023 09:58:06 +0000 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F:=20migrate=20config=20.githu?= =?UTF-8?q?b/renovate.json5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/renovate.json5 | 86 +++++++++++++++++++++--------------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 0bf727cb..aafd564c 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,60 +1,60 @@ { - $schema: "https://docs.renovatebot.com/renovate-schema.json", - extends: ["config:base"], - - // Renovate uses plugins called "managers" to handle different languages and - // frameworks. The full list of managers and their behaviour is documented - // here: https://docs.renovatebot.com/modules/manager/ - enabledManagers: ["gomod", "terraform-version", "terraform"], - - // Allow Renovate to update this file when new features require it. + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', + ], + enabledManagers: [ + 'gomod', + 'terraform-version', + 'terraform', + ], configMigration: true, - - // Default to a generic prefix, if a more specific prefix is not set in the - // packageRules below. - commitMessagePrefix: "⬆️ ", - - // Assign pull requests automatically. - additionalReviewers: ["busser"], - - // Use packageRules to customize Renovate's behavior. Be specific with the - // match* fields in each rule, to avoid impacting unexpected managers or - // packages. + commitMessagePrefix: '⬆️ ', + additionalReviewers: [ + 'busser', + ], packageRules: [ - // Set a prefix that makes reading the changelog easier. { - matchManagers: ["gomod"], - commitMessagePrefix: "⬆️[Go] ", + matchManagers: [ + 'gomod', + ], + commitMessagePrefix: '⬆️[Go] ', }, { - matchManagers: ["terraform-version", "terraform"], - commitMessagePrefix: "⬆️[Terraform] ", + matchManagers: [ + 'terraform-version', + 'terraform', + ], + commitMessagePrefix: '⬆️[Terraform] ', }, - - // Group dependencies into single pull requests to make reviews easier. { - matchManagers: ["gomod"], - groupName: "Go packages", + matchManagers: [ + 'gomod', + ], + groupName: 'Go packages', }, { - matchManagers: ["terraform"], - groupName: "Terraform providers", + matchManagers: [ + 'terraform', + ], + groupName: 'Terraform providers', }, - - // Tidy up lock files after updates. { - matchManagers: ["gomod"], - postUpdateOptions: ["gomodTidy"], + matchManagers: [ + 'gomod', + ], + postUpdateOptions: [ + 'gomodTidy', + ], }, - - // Handle strange exceptions. Please explain why for future readers. { - // This package changed their versioning scheme from X.Y.Z to 0.X.Y a few - // years ago. This config stops Renovate from suggesting we upgrade from - // v0.27 to v11. - matchManagers: ["gomod"], - matchPackageNames: ["k8s.io/client-go"], - allowedVersions: "<1.0", + matchManagers: [ + 'gomod', + ], + matchPackageNames: [ + 'k8s.io/client-go', + ], + allowedVersions: '<1.0', }, ], }