mirror of https://github.com/mongodb/mongo
SERVER-93711 Remove Codeowners BUILD.bazel exemption (#30957)
GitOrigin-RevId: 8846315537b9cc27554d89df5e67f94b99ba31b6
This commit is contained in:
parent
637c3f50fd
commit
cfe1a53bd9
|
|
@ -2182,7 +2182,3 @@ WORKSPACE.bazel @10gen/devprod-build @svc-auto-approve-bot
|
|||
|
||||
# The following patterns are parsed from ./src/third_party/wiredtiger/OWNERS.yml
|
||||
/src/third_party/wiredtiger/**/*
|
||||
|
||||
# The following patterns are added by the generator script as exemptions during the Bazel migration
|
||||
**/SConscript
|
||||
**/BUILD.bazel
|
||||
|
|
@ -219,13 +219,6 @@ def main():
|
|||
print(f"Scanning for OWNERS.yml files in {os.path.abspath(os.curdir)}")
|
||||
try:
|
||||
process_dir(output_lines, "./")
|
||||
|
||||
# TODO(SERVER-93711) remove exemptions after the Bazel migration is complete.
|
||||
output_lines.append(
|
||||
"# The following patterns are added by the generator script as exemptions during the Bazel migration"
|
||||
)
|
||||
add_owner_line(output_lines, "./", "**/SConscript", set())
|
||||
add_owner_line(output_lines, "./", "**/BUILD.bazel", set())
|
||||
except Exception as ex:
|
||||
print("An exception was found while generating the CODEOWNERS file.", file=sys.stderr)
|
||||
print(
|
||||
|
|
|
|||
Loading…
Reference in New Issue