From 245f77b4fdeb82861ab5e55e6d10758a2fc678f9 Mon Sep 17 00:00:00 2001
From: Patrick Hobusch <pathob@users.noreply.github.com>
Date: Fri, 1 Dec 2023 13:03:32 +0800
Subject: [PATCH] feat(helmfile): support optional `.gotmpl` extension (#23176)
 (#26063)

Co-authored-by: Sebastian Poxhofer <secustor@users.noreply.github.com>
---
 lib/modules/manager/helmfile/index.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/modules/manager/helmfile/index.ts b/lib/modules/manager/helmfile/index.ts
index c491b44f9c..fae7d3439e 100644
--- a/lib/modules/manager/helmfile/index.ts
+++ b/lib/modules/manager/helmfile/index.ts
@@ -11,7 +11,7 @@ export const defaultConfig = {
     stable: 'https://charts.helm.sh/stable',
   },
   commitMessageTopic: 'helm chart {{depName}}',
-  fileMatch: ['(^|/)helmfile\\.ya?ml$'],
+  fileMatch: ['(^|/)helmfile\\.ya?ml(?:\\.gotmpl)?$'],
 };
 
 export const categories: Category[] = ['cd', 'helm', 'kubernetes'];
-- 
GitLab