add empty space for testing

GitOrigin-RevId: a036b89b69b4246c78e2bb8a32cab8e5bbe77a37
This commit is contained in:
Juan Gu 2023-11-21 23:17:51 +00:00 committed by MongoDB Bot
parent 7f810c9476
commit 6181fde603
2 changed files with 5 additions and 3 deletions

View File

@ -122,6 +122,8 @@ def main():
current_dir = os.getcwd()
git_destination_url_with_token = f"https://x-access-token:{access_token_copybara_syncer}@github.com/mongodb/mongo.git"
# Set up the Docker command and execute it
# --last-rev Defines the last revision that was migrated to the destination during the initial synchronization between repositories using Copybara
docker_cmd = [

View File

@ -7,13 +7,13 @@ core.workflow(
name = "default",
origin = git.origin(
url = sourceUrl,
ref = "v4.4",
ref = "v4.4-copybaratest",
# VersionSelector
),
destination = git.destination(
url = destinationUrl,
fetch = "v4.4",
push = "v4.4",
fetch = "v4.4-copybaratest",
push = "v4.4-copybaratest",
),
# Change path to the folder you want to publish publicly
origin_files = glob(["**"], exclude=["src/mongo/db/modules/**"]),