Skip to content

Commit

Permalink
fix: day runner
Browse files Browse the repository at this point in the history
  • Loading branch information
art049 committed Dec 2, 2024
1 parent 42b6a81 commit 2c60c4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manager/src/manager/handlers/run_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def main(day: str):
repos = RepositoryRepository.find_all()
for repo in repos:
print(f"Running {repo.owner}/{repo.name} for day {day}")
r = SCHEDULE_RUN_WORKFLOW.create_dispatch(ref="main-private", inputs={
r = SCHEDULE_RUN_WORKFLOW.create_dispatch(ref="main", inputs={
"repo_fullname": f"{repo.owner}/{repo.name}",
"toolchain": repo.toolchain,
"crate": repo.crate,
Expand Down

0 comments on commit 2c60c4d

Please sign in to comment.