From 1743d814489307a2879bf34f685fd9e95b9874d3 Mon Sep 17 00:00:00 2001
From: Markus Hofbauer <markus.hofbauer@tum.de>
Date: Fri, 20 Dec 2024 14:23:37 +0100
Subject: [PATCH] feat(bazel-module): Support *.MODULE.bazel (#33211)

Co-authored-by: Rhys Arkins <rhys@arkins.net>
---
 lib/modules/manager/bazel-module/index.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/modules/manager/bazel-module/index.ts b/lib/modules/manager/bazel-module/index.ts
index fe9461b7f8..3bad62944b 100644
--- a/lib/modules/manager/bazel-module/index.ts
+++ b/lib/modules/manager/bazel-module/index.ts
@@ -11,7 +11,7 @@ export const url = 'https://bazel.build/external/module';
 export const categories: Category[] = ['bazel'];
 
 export const defaultConfig = {
-  fileMatch: ['(^|/)MODULE\\.bazel$'],
+  fileMatch: ['(^|/|\\.)MODULE\\.bazel$'],
 };
 
 export const supportedDatasources = [
-- 
GitLab