From 20bbd0982e3fe788123d35629e56014cfa0213df Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Wed, 8 Oct 2025 16:26:40 +0200 Subject: [PATCH] finish configs --- action.json | 9 ++------- docker-compose.json | 3 ++- helm.json | 14 +++----------- k8s.json | 9 ++------- 4 files changed, 9 insertions(+), 26 deletions(-) diff --git a/action.json b/action.json index 4c6b5f7..6eb904f 100644 --- a/action.json +++ b/action.json @@ -2,13 +2,8 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "packageRules": [ { - "matchManagers": [ - "github-actions" - ], - "addLabels": [ - "deps", - "action" - ] + "matchManagers": ["github-actions"], + "addLabels": ["deps", "action"] } ] } diff --git a/docker-compose.json b/docker-compose.json index 11c5bbe..fcbcf53 100644 --- a/docker-compose.json +++ b/docker-compose.json @@ -3,6 +3,7 @@ "docker-compose": { "digest": { "enabled": true - } + }, + "addLabels": ["deps", "docker-compose"] } } diff --git a/helm.json b/helm.json index 62e0e9c..0e09f7f 100644 --- a/helm.json +++ b/helm.json @@ -1,25 +1,17 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "helm-values": { - "fileMatch": [ - "(^|/)values/.*\\.ya?ml$", - "(^|/)values/.*\\.ya?ml\\.gotmpl$" - ] + "fileMatch": ["(^|/)values/.*\\.ya?ml$", "(^|/)values/.*\\.ya?ml\\.gotmpl$"] }, "packageRules": [ { - "matchManagers": [ - "helm-values" - ], + "matchManagers": ["helm-values"], "versioning": "docker", "separateMinorPatch": true } ], "helmfile": { "enabled": true, - "addLabels": [ - "deps", - "helm" - ] + "addLabels": ["deps", "helm"] } } diff --git a/k8s.json b/k8s.json index d0694c7..daa72dc 100644 --- a/k8s.json +++ b/k8s.json @@ -2,12 +2,7 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "kubernetes": { "enabled": true, - "fileMatch": [ - "^k8s/*\\.json$" - ], - "labels": [ - "deps", - "k8s" - ] + "fileMatch": ["^k8s/*\\.json$"], + "labels": ["deps", "k8s"] } }