Skip to content

Commit

Permalink
ci: Remove dispatch to schedulers
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr0p42 committed Jul 31, 2024
1 parent 49f1a21 commit 03a60db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/scripts/generate_schedulers.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ def generate_schedulers(config : dict, template : str):

_.set_(cicd, "name", f"Scheduler - {scheduler['name']}")

cicd["on"] = {"schedule": [{"cron": scheduler["cron"]}], "workflow_dispatch": {}}
cicd["on"] = {"schedule": [{"cron": scheduler["cron"]}]}
# cicd["on"] = {"schedule": [{"cron": scheduler["cron"]}], "workflow_dispatch": {}}


new_step = {}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/scheduler__main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,3 @@ name: Scheduler - main
'on':
schedule:
- cron: '*/5 * * * *'
workflow_dispatch: {}

0 comments on commit 03a60db

Please sign in to comment.