We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f210187 commit 705ba9cCopy full SHA for 705ba9c
bazel/lib/dependabot/bazel/file_updater.rb
@@ -18,6 +18,7 @@ def self.updated_files_regex
18
[
19
/^MODULE\.bazel$/,
20
%r{^(?:.*/)?MODULE\.bazel$},
21
+ %r{^(?:.*/)?\w+\.MODULE\.bazel$}, # Match *.MODULE.bazel files
22
/^WORKSPACE$/,
23
%r{^(?:.*/)?WORKSPACE\.bazel$},
24
%r{^(?:.*/)?BUILD$},
bazel/spec/dependabot/bazel/file_updater_spec.rb
@@ -82,6 +82,7 @@
82
expect(described_class.updated_files_regex).to contain_exactly(
83
84
85
+ %r{^(?:.*/)?\w+\.MODULE\.bazel$},
86
87
88
0 commit comments