load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "internal", srcs = [ "config.go", "utils.go", ], importpath = "edge-infra.dev/hack/tools/apko-updater-bot/internal", visibility = ["//hack/tools/apko-updater-bot:__subpackages__"], deps = [ "//pkg/f8n/devinfra/github/ghfs", "//pkg/lib/build/apko", "@in_gopkg_yaml_v3//:yaml_v3", ], ) go_test( name = "internal_test", srcs = ["config_test.go"], data = glob(["testdata/**"]), embed = [":internal"], )