From d142b731b5572e5bb516cf8ce0311eb6acce9cf0 Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Sun, 8 Feb 2026 19:51:18 +0100 Subject: [PATCH 1/4] feat: ignore cooldown for internal deps --- common.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 + } + ] } -- 2.49.1 From 287979ad0a6a35b8789885f5afd8457704e7a36f Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Sun, 8 Feb 2026 19:54:11 +0100 Subject: [PATCH 2/4] feat: always extend commons --- action.json | 2 +- common.json | 2 +- docker-compose.json | 1 + helm.json | 1 + k8s.json | 1 + 5 files changed, 5 insertions(+), 2 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 c2e4f0a..eca59cd 100644 --- a/common.json +++ b/common.json @@ -2,7 +2,7 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "dependencyDashboard": true, "semanticCommits": "enabled", - "extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"], + "extends": ["local>t.behrendt/renovate-configs:common", "config:best-practices", ":semanticCommitTypeAll(chore)"], "packageRules": [ { "matchPackagePatterns": ["^(https:\\/\\/)?gitea\\.t000-n\\.de\/"], 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"] -- 2.49.1 From 1f914fef06fdca78005f62194e42bdfbd5151549 Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Sun, 8 Feb 2026 19:54:29 +0100 Subject: [PATCH 3/4] chore: align renovate config with new extend rules --- renovate.json | 1 - 1 file changed, 1 deletion(-) 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" ] } -- 2.49.1 From 1065b7f719b0e4a9a2205b296201d746c891502e Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Sun, 8 Feb 2026 19:59:34 +0100 Subject: [PATCH 4/4] remove circular reference --- common.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.json b/common.json index eca59cd..c2e4f0a 100644 --- a/common.json +++ b/common.json @@ -2,7 +2,7 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "dependencyDashboard": true, "semanticCommits": "enabled", - "extends": ["local>t.behrendt/renovate-configs:common", "config:best-practices", ":semanticCommitTypeAll(chore)"], + "extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"], "packageRules": [ { "matchPackagePatterns": ["^(https:\\/\\/)?gitea\\.t000-n\\.de\/"], -- 2.49.1