...
1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "triage_issue",
5 srcs = [
6 "handler.go",
7 "issue.go",
8 ],
9 importpath = "edge-infra.dev/pkg/f8n/devinfra/jack/plugin/triage_issue",
10 visibility = ["//visibility:public"],
11 deps = [
12 "//pkg/f8n/devinfra/jack/constants",
13 "//pkg/f8n/devinfra/jack/guest_services",
14 "//pkg/f8n/devinfra/jack/plugin",
15 "@com_github_google_go_github_v47//github",
16 ],
17)
18
19go_test(
20 name = "triage_issue_test",
21 srcs = ["handler_test.go"],
22 embed = [":triage_issue"],
23 deps = [
24 "//pkg/f8n/devinfra/jack/constants",
25 "//pkg/f8n/devinfra/jack/plugin",
26 "//pkg/lib/logging",
27 "@com_github_google_go_github_v47//github",
28 ],
29)
View as plain text