sapling/ci/TARGETS
generatedunixname89002005287564 d35fff51c6 eden
Reviewed By: zsol

Differential Revision: D50490765

fbshipit-source-id: b11d0c956f4e84badf1d67a09e754a2b850aeac7
2023-10-23 09:12:58 -07:00

17 lines
449 B
Plaintext

load("@fbcode_macros//build_defs:python_binary.bzl", "python_binary")
oncall("scm_client_infra")
# This cannot live in the eden/oss/.github/workflows/ folder because the
# ".github" in the path is incompatible with main_module.
python_binary(
name = "gen_workflows",
srcs = [
"gen_workflows.py",
],
main_function = "eden.oss.ci.gen_workflows.main",
deps = [
"fbsource//third-party/pypi/pyyaml:pyyaml",
],
)