A stealth-based 2D platformer where you don't have to kill anyone unless you want to. https://www.semicolin.games
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB

  1. sourceUrlGitea = "git@git.semicol.in:semicolin/sneak-private.git"
  2. destinationUrlGitea = "git@git.semicol.in:semicolin/sneak.git"
  3. destinationUrlGitHub = "git@github.com:mcmillen/sneak.git"
  4. files = ["README.md", "tools/**", "Shared/**", "SharedTests/**", "Jumpy.Shared/**"]
  5. core.workflow(
  6. name = "gitea",
  7. mode = "ITERATIVE",
  8. origin = git.origin(
  9. url = sourceUrlGitea,
  10. ref = "master",
  11. ),
  12. destination = git.destination(
  13. url = destinationUrlGitea,
  14. fetch = "master",
  15. push = "master",
  16. ),
  17. origin_files = glob(files),
  18. authoring = authoring.pass_thru("Unknown Author <nobody@semicolin.games>"),
  19. )
  20. core.workflow(
  21. name = "github",
  22. mode = "ITERATIVE",
  23. origin = git.origin(
  24. url = sourceUrlGitea,
  25. ref = "master",
  26. ),
  27. destination = git.destination(
  28. url = destinationUrlGitHub,
  29. fetch = "master",
  30. push = "master",
  31. ),
  32. origin_files = glob(files),
  33. authoring = authoring.pass_thru("Unknown Author <nobody@semicolin.games>"),
  34. )