Task that sends out email notifications for failed tasks.
prune_validation_workflows()
Run this task every night at 4:45 AM.
Source code in gso/schedules/prune_validation_workflows.py
| @shared_task
@scheduler(CronScheduleConfig(name="Send email notifications", hour="4", minute="45"))
def prune_validation_workflows() -> None:
"""Run this task every night at 4:45 AM."""
start_process("task_prune_validation_workflows")
|