-
Notifications
You must be signed in to change notification settings - Fork 693
/
BUILD.bazel
39 lines (36 loc) · 918 Bytes
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
PERIBOLOS = "@io_k8s_test_infra//prow/cmd/peribolos"
sh_binary(
name = "update",
srcs = ["update.sh"],
args = [
"$(location %s)" % PERIBOLOS,
"--config-path",
"$(location //config:config.yaml)",
"--fix-org",
"--fix-org-members",
"--fix-teams",
"--fix-team-members",
"--required-admins=calebamiles",
"--required-admins=cblecker",
"--required-admins=fejta",
"--required-admins=idvoretskyi",
"--required-admins=nikhita",
"--required-admins=spiffxp",
],
data = [
"//config:config.yaml",
PERIBOLOS,
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)