From 41bb4e97e2726d9ad50ed4dd5853da4865be669e Mon Sep 17 00:00:00 2001 From: Andreas Klos Date: Mon, 16 Feb 2026 08:52:41 +0100 Subject: [PATCH 1/2] chore: disable test.pypi.org in hostRules for Renovate configuration --- .github/renovate.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index e2fdd514..1a4c3bee 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -12,6 +12,11 @@ "stabilityDays": 7, "repositories": ["stackitcloud/rag-template"], "hostRules": [ + { + "hostType": "pypi", + "matchHost": "test.pypi.org", + "enabled": false + }, { "hostType": "docker", "matchHost": "ghcr.io" From b1d409138e293f04abf211d69554377a6796e915 Mon Sep 17 00:00:00 2001 From: Andreas Klos Date: Mon, 16 Feb 2026 09:20:40 +0100 Subject: [PATCH 2/2] chore: add rules to ignore Python interpreter and base image updates --- .github/renovate.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index 1a4c3bee..7641ffb1 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -66,6 +66,12 @@ "matchManagers": ["poetry", "pip_requirements"], "addLabels": ["python"] }, + { + "description": "Ignore Python interpreter version updates", + "matchManagers": ["poetry"], + "matchDepNames": ["python"], + "enabled": false + }, { "description": "Label Node.js dependencies", "matchManagers": ["npm"], @@ -76,6 +82,12 @@ "matchManagers": ["dockerfile", "docker-compose"], "addLabels": ["docker"] }, + { + "description": "Ignore Python base image updates in Dockerfiles", + "matchManagers": ["dockerfile"], + "matchPackageNames": ["python", "docker.io/library/python", "library/python"], + "enabled": false + }, { "description": "Label Helm charts", "matchManagers": ["helm-requirements", "helm-values", "helmv3"],