copy.bara.sky 571 B

1234567891011121314151617
  1. core.workflow(
  2. name = "default",
  3. origin = git.origin(
  4. url = "git@github.com:sharelatex/web-sharelatex-internal.git",
  5. ref = "master"
  6. ),
  7. destination = git.destination(
  8. url = "git@github.com:sharelatex/web-sharelatex.git",
  9. fetch = "master",
  10. push = "master"
  11. ),
  12. # Exclude the modules directory
  13. origin_files = glob(["**"], exclude = ["modules/**", "app/views/external/**", "public/brand/**"]),
  14. mode="ITERATIVE",
  15. migrate_noop_changes=True,
  16. authoring = authoring.pass_thru("Copybot <copybot@overleaf.com>")
  17. )