sneak/tools/copybara/config/copy.bara.sky
Colin McMillen 3107c8448e clean up copybara config a smidge
GitOrigin-RevId: 5179f64eecdf7f500a9341c22402fe42ef032529
2020-02-17 18:43:54 -05:00

40 lines
1.0 KiB
Plaintext

sourceUrlGitea = "git@git.semicolin:semicolin/sneak-private.git"
destinationUrlGitea = "git@git.semicolin:semicolin/sneak.git"
destinationUrlGitHub = "git@github.com:mcmillen/sneak.git"
files = ["README.md", "tools/**", "Shared/**", "SharedTests/**", "Jumpy.Shared/**"]
core.workflow(
name = "gitea",
mode = "ITERATIVE",
origin = git.origin(
url = sourceUrlGitea,
ref = "master",
),
destination = git.destination(
url = destinationUrlGitea,
fetch = "master",
push = "master",
),
origin_files = glob(files),
authoring = authoring.pass_thru("Unknown Author <nobody@semicolin.games>"),
)
core.workflow(
name = "github",
mode = "ITERATIVE",
origin = git.origin(
url = sourceUrlGitea,
ref = "master",
),
destination = git.destination(
url = destinationUrlGitHub,
fetch = "master",
push = "master",
),
origin_files = glob(files),
authoring = authoring.pass_thru("Unknown Author <nobody@semicolin.games>"),
)