mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-01 05:11:34 +02:00
Merge modules into web monorepo GitOrigin-RevId: 742df73bff72010b01c93e20759a489969b04ed3
18 lines
571 B
Plaintext
18 lines
571 B
Plaintext
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/**", "app/views/external/**", "public/brand/**"]),
|
|
mode="ITERATIVE",
|
|
migrate_noop_changes=True,
|
|
authoring = authoring.pass_thru("Copybot <copybot@overleaf.com>")
|
|
)
|