mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-30 05:35:18 -05:00
1aecd0be3d
Sync to OSS repo using copybara GitOrigin-RevId: 5ce0c08d614f3d84e7c3e1f9b3413681e5049103
17 lines
527 B
Text
17 lines
527 B
Text
core.workflow(
|
|
name = "default",
|
|
origin = git.origin(
|
|
url = "git@github.com:sharelatex/web-sharelatex-internal.git",
|
|
ref = "master"
|
|
),
|
|
destination = git.destination(
|
|
url = "git@github.com:sharelatex/web-sharelatex.git",
|
|
fetch = "master",
|
|
push = "master"
|
|
),
|
|
# Exclude the modules directory
|
|
origin_files = glob(["**"], exclude = ["modules/**"]),
|
|
mode="ITERATIVE",
|
|
migrate_noop_changes=True,
|
|
authoring = authoring.pass_thru("Copybot <copybot@overleaf.com>")
|
|
)
|