From 99a56f3e9b7a4088e051c105a00d4e62bc843080 Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Mon, 9 Feb 2026 19:53:01 +0100 Subject: [PATCH] fix: minimum release age (#35) Reviewed-on: https://gitea.t000-n.de/t.behrendt/renovate-configs/pulls/35 Co-authored-by: Timo Behrendt Co-committed-by: Timo Behrendt --- common.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.json b/common.json index 259ac3a..f4bdfad 100644 --- a/common.json +++ b/common.json @@ -6,7 +6,7 @@ "packageRules": [ { "description": "Don't update dependencies unless they are at least 7 days old", - "minimumReleaseAge": 7, + "minimumReleaseAge": "7 days", "minimumReleaseAgeBehaviour": "timestamp-optional", "internalChecksFilter": "strict" }, @@ -14,7 +14,7 @@ "description": "Exempt local dependencies from the minimum release age", "matchManagers": ["docker-compose", "helm-values", "github-actions", "kubernetes", "dockerfile"], "matchPackagePatterns": ["^(https:\\/\\/)?gitea\\.t000-n\\.de\/"], - "minimumReleaseAge": 0 + "minimumReleaseAge": null } ] }