From 7a4f5cb141638aa2db420fe65c2a49eabd92e5fc Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Sun, 8 Feb 2026 20:01:34 +0100 Subject: [PATCH] feat: ignore cooldown for internal deps (#32) Ignoring min release age for any internal deps and have every rule extend the common package. Reviewed-on: https://gitea.t000-n.de/t.behrendt/renovate-configs/pulls/32 Co-authored-by: Timo Behrendt Co-committed-by: Timo Behrendt --- action.json | 2 +- common.json | 8 +++++++- docker-compose.json | 1 + helm.json | 1 + k8s.json | 1 + renovate.json | 1 - 6 files changed, 11 insertions(+), 3 deletions(-) diff --git a/action.json b/action.json index 1e80602..df032b3 100644 --- a/action.json +++ b/action.json @@ -1,6 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["helpers:pinGitHubActionDigests"], + "extends": ["local>t.behrendt/renovate-configs:common", "helpers:pinGitHubActionDigests"], "packageRules": [ { "matchManagers": ["github-actions"], diff --git a/common.json b/common.json index 663c273..c2e4f0a 100644 --- a/common.json +++ b/common.json @@ -2,5 +2,11 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "dependencyDashboard": true, "semanticCommits": "enabled", - "extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"] + "extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"], + "packageRules": [ + { + "matchPackagePatterns": ["^(https:\\/\\/)?gitea\\.t000-n\\.de\/"], + "minimumReleaseAge": null + } + ] } diff --git a/docker-compose.json b/docker-compose.json index d7694ec..d0d55c0 100644 --- a/docker-compose.json +++ b/docker-compose.json @@ -1,5 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["local>t.behrendt/renovate-configs:common"], "docker-compose": { "digest": { "enabled": true diff --git a/helm.json b/helm.json index 69d2938..a10ce53 100644 --- a/helm.json +++ b/helm.json @@ -1,5 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["local>t.behrendt/renovate-configs:common"], "helm-values": { "fileMatch": ["(^|/)values/.*\\.ya?ml$", "(^|/)values/.*\\.ya?ml\\.gotmpl$"] }, diff --git a/k8s.json b/k8s.json index 378be4e..860998e 100644 --- a/k8s.json +++ b/k8s.json @@ -1,5 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["local>t.behrendt/renovate-configs:common"], "kubernetes": { "enabled": true, "labels": ["deps", "k8s"] diff --git a/renovate.json b/renovate.json index 9e28a36..98fd019 100644 --- a/renovate.json +++ b/renovate.json @@ -1,7 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "local>t.behrendt/renovate-configs:common", "local>t.behrendt/renovate-configs:action" ] }