sneak/tools/copybara/copy.bara.sky
Colin McMillen 3f6fc67cb6 add unit tests to copybara config
GitOrigin-RevId: 4ad6471d55815fa14730d9c9d316ff3b7b68592a
2020-02-13 14:49:23 -05:00

26 lines
750 B
Plaintext

sourceUrl = "git@github.com:mcmillen/sneak.git"
destinationUrl = "git@github.com:mcmillen/sneak-public.git"
core.workflow(
name = "default",
mode = "ITERATIVE",
origin = git.origin(
url = sourceUrl,
ref = "master",
),
destination = git.destination(
url = destinationUrl,
fetch = "master",
push = "master",
),
# Change path to the folder you want to publish publicly
origin_files = glob(["README.md", "tools/**", "Shared/**", "SharedTests/**", "Jumpy.Shared/**"]),
authoring = authoring.pass_thru("Unknown Author <nobody@semicolin.games>"),
# Change the path here to the folder you want to publish publicly
#transformations = [
# core.move("", ""),
#],
)