From 1fd6dea387fca6519c97122263f933b474fe818b Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Sat, 11 Oct 2025 08:51:03 +0200 Subject: [PATCH] fix: k8s config to reference yaml file instead of json (#5) Ups, something got messed up during migration. k8s manifests are of course of file type yaml and not json. Reviewed-on: https://gitea.t000-n.de/t.behrendt/renovate-configs/pulls/5 Reviewed-by: branch-buddy Co-authored-by: Timo Behrendt Co-committed-by: Timo Behrendt --- k8s.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s.json b/k8s.json index daa72dc..75e3ad3 100644 --- a/k8s.json +++ b/k8s.json @@ -2,7 +2,7 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "kubernetes": { "enabled": true, - "fileMatch": ["^k8s/*\\.json$"], + "fileMatch": ["^k8s/*\\.yaml$"], "labels": ["deps", "k8s"] } }