load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "triage_issue", srcs = [ "handler.go", "issue.go", ], importpath = "edge-infra.dev/pkg/f8n/devinfra/jack/plugin/triage_issue", visibility = ["//visibility:public"], deps = [ "//pkg/f8n/devinfra/jack/constants", "//pkg/f8n/devinfra/jack/guest_services", "//pkg/f8n/devinfra/jack/plugin", "@com_github_google_go_github_v47//github", ], ) go_test( name = "triage_issue_test", srcs = ["handler_test.go"], embed = [":triage_issue"], deps = [ "//pkg/f8n/devinfra/jack/constants", "//pkg/f8n/devinfra/jack/plugin", "//pkg/lib/logging", "@com_github_google_go_github_v47//github", ], )