-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathcopy.bara.sky
executable file
·64 lines (54 loc) · 2.03 KB
/
copy.bara.sky
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# This is a configuration file for Copybara that defines the workflow for syncing changes between the OSS and monorepo.
MONOREPO_URL = "[email protected]:squareup/cash-server.git"
OSS_REPO_URL = "[email protected]:cashapp/misk.git"
MONOREPO_BRANCH = "raine/misk-copybara" #main
OSS_REPO_BRANCH = "raine/copybara-test" #master
MONOREPO_INCLUDES = ["misk/**"]
MONOREPO_EXCLUDES = ["misk/copy.bara.sky", "misk/.buildkite/*"]
OSS_REPO_INCLUDES = ["**"]
OSS_REPO_EXCLUDES = []
transforms = [
core.move("", "misk", glob(["**"])),
]
author = authoring.pass_thru("CashApp Copybara <[email protected]>")
# Push changes from the monorepo to the OSS repo
core.workflow(
name = "push",
origin = git.origin(
url = MONOREPO_URL,
ref = MONOREPO_BRANCH,
),
origin_files = glob(MONOREPO_INCLUDES, exclude = MONOREPO_EXCLUDES),
destination = git.destination(
url = OSS_REPO_URL,
push = OSS_REPO_BRANCH,
),
destination_files = glob(OSS_REPO_INCLUDES, exclude = OSS_REPO_EXCLUDES),
mode = "ITERATIVE",
authoring = author,
transformations = [
metadata.restore_author("ORIGINAL_AUTHOR", search_all_changes = True),
#used when a PR is created in the OSS and we want to do a fake-merge
metadata.expose_label("COPYBARA_INTEGRATE_REVIEW"),
] + core.reverse(transforms),
)
# Pull changes from the OSS to the monorepo (This is just for reference, the SoT is the monorepo)
core.workflow(
name = "pull",
origin = git.origin(
url = OSS_REPO_URL,
ref = OSS_REPO_BRANCH,
),
origin_files = glob(OSS_REPO_INCLUDES, exclude = OSS_REPO_EXCLUDES),
destination = git.destination(
url = MONOREPO_URL,
push = MONOREPO_BRANCH,
),
destination_files = glob(MONOREPO_INCLUDES, exclude = MONOREPO_EXCLUDES),
mode = "ITERATIVE",
authoring = author,
transformations = [
metadata.restore_author("ORIGINAL_AUTHOR", search_all_changes = True),
metadata.expose_label("COPYBARA_INTEGRATE_REVIEW"),
] + transforms,
)