From 9f40b06ce90c4d0f5e4bf8f791c08160be90d049 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Mon, 4 Nov 2024 07:48:33 +0100 Subject: [PATCH] chore: update renovate configuration to disable auth0mock updates Adds a package rule in the Renovate configuration to disable updates for the `auth0mock` package managed by Kubernetes. This change ensures that unwanted updates are prevented, maintaining compatibility and stability within the project. --- renovate.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/renovate.json b/renovate.json index 5db72dd..d53d6f4 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,16 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended" + ], + "packageRules": [ + { + "matchManagers": [ + "kubernetes" + ], + "matchPackageNames": [ + "registry.gitlab.com/unboundsoftware/auth0mock" + ], + "enabled": false + } ] }