depot/third_party/tvl/copy.bara.sky

26 lines
756 B
Text
Raw Normal View History

2020-10-04 00:03:12 +00:00
core.workflow(
name = "default",
origin = git.origin(
url = "https://cl.tvl.fyi/depot",
ref = "canon",
),
destination = hg.destination(
url = "file:///home/lukegb/depot",
fetch = "default",
push = "default",
),
2022-05-21 17:03:00 +00:00
origin_files = glob(["**"], exclude = [
"nix/utils/tests/**", # nix/utils/tests/missing makes everything barf
"users/**",
]),
2020-10-04 00:03:12 +00:00
destination_files = glob(["third_party/tvl/**"], exclude = [
"third_party/tvl/copy.bara.sky",
"third_party/tvl/patches/**",
]),
authoring = authoring.pass_thru("Default email <noreply+tvl@lukegb.com>"),
transformations = [
patch.apply(patches = []),
core.move("", "third_party/tvl"),
],
)