SERVER-93711 Remove Codeowners BUILD.bazel exemption (#30957)

GitOrigin-RevId: 8846315537b9cc27554d89df5e67f94b99ba31b6
This commit is contained in:
Zack Winter 2025-01-08 11:44:35 -08:00 committed by MongoDB Bot
parent 637c3f50fd
commit cfe1a53bd9
2 changed files with 0 additions and 11 deletions

4
.github/CODEOWNERS vendored
View File

@ -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

View File

@ -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(