From c614d01ab639b4fbd68f53e42251c21baaeef938 Mon Sep 17 00:00:00 2001 From: "t.behrendt" Date: Tue, 7 Jul 2026 06:53:15 +0200 Subject: [PATCH] fix: skip minimum release age for internal docker deps (#90) Should resolve https://gitea.t000-n.de/t.behrendt/renovate-configs/issues/88 Docker images have the registry as part of the package name, therefore the current pattern didn't match them. Reviewed-on: https://gitea.t000-n.de/t.behrendt/renovate-configs/pulls/90 Co-authored-by: t.behrendt Co-committed-by: t.behrendt --- common.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.json b/common.json index 1aab0fd..643dc04 100644 --- a/common.json +++ b/common.json @@ -15,7 +15,7 @@ "packageRules": [ { "description": "Don't update dependencies unless they are at least 7 days old (except for internal deps).", - "matchPackageNames": ["!t.behrendt/**"], + "matchPackageNames": ["!t.behrendt/**", "gitea.t000-n.de/t.behrendt/**"], "minimumReleaseAge": "7 days", "minimumReleaseAgeBehaviour": "timestamp-required", "internalChecksFilter": "strict"