load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "metrics", srcs = [ "get_billable_from_github.go", "get_runners_from_github.go", "get_runners_organization_from_github.go", "get_workflow_runs_from_github.go", "metrics.go", "workflows_cache.go", ], importpath = "edge-infra.dev/pkg/f8n/devinfra/github-actions-exporter/metrics", visibility = ["//visibility:public"], deps = [ "//pkg/f8n/devinfra/github-client", "@com_github_google_go_github_v47//github", "@com_github_prometheus_client_golang//prometheus", "@com_github_prometheus_client_golang//prometheus/promauto", ], )