diff options
author | Markus Hofbauer <[email protected]> | 2024-12-20 14:23:37 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-12-20 13:23:37 +0000 |
commit | 1743d814489307a2879bf34f685fd9e95b9874d3 (patch) | |
tree | 94524b5cf2b98158e7584468175b6bfce0a4e483 | |
parent | aa0c7d284ba16e209ffb9b7e93bb526c06f7be22 (diff) | |
download | renovate-1743d814489307a2879bf34f685fd9e95b9874d3.tar.gz renovate-1743d814489307a2879bf34f685fd9e95b9874d3.zip |
feat(bazel-module): Support *.MODULE.bazel (#33211)39.77.0
Co-authored-by: Rhys Arkins <[email protected]>
-rw-r--r-- | lib/modules/manager/bazel-module/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/modules/manager/bazel-module/index.ts b/lib/modules/manager/bazel-module/index.ts index fe9461b7f8c..3bad62944b8 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 = [ |