SERVER-88711 Generate .github/CODEOWNERS from OWNERS.yml files (#20694)

GitOrigin-RevId: 1f7dc5dd5e91cc885647063b888d4d9c2f61f43c
This commit is contained in:
Trevor
2024-04-04 13:13:22 -05:00
committed by MongoDB Bot
parent 9f736f576d
commit 3f6bcaec41
9 changed files with 319 additions and 3 deletions

View File

@@ -2,7 +2,13 @@ load("@bazel_tools//tools/python:toolchain.bzl", "py_runtime_pair")
filegroup(
name = "files",
srcs = glob(["**/*"]),
srcs = glob(
include=["**/*"],
# bazel runfiles do not support paths with spaces
# https://github.com/bazelbuild/bazel/issues/4327
# The setuptools developers will not remove the spaces from these files
# https://github.com/pypa/setuptools/issues/746
exclude=["**/setuptools/**/* *"]),
visibility = ["//visibility:public"],
)