Before this, I use ```source = GitRepository( ...
# ask-community
a
Before this, I use
Copy code
source = GitRepository(
        url=SOURCE_REPO,
        credentials=GitHubCredentials.load("my-github-credentials-block"),
        branch="dev",
    )

    flow.from_source(
        source=source,
        entrypoint=f"{entry_file}:{entry_func}",  # Specific flow to run
    ).deploy(
        name="deployment",
        work_pool_name="work-pool",
        # cron="* * * * * sleep 30",  # Run every hour
    )