Skip to main content

Schedule Workflows

Automate workflow execution with cron schedule triggers. This guide covers creating triggers, managing multiple schedules, and understanding how scheduled runs work.

Prerequisites

  • A fully configured workflow (stages, assignments, LLM) ready to run
  • The workflow must not have "Awaits User Input" enabled

Steps

1. Understand trigger types

ORQO currently supports schedule triggers -- cron-based recurring execution. Each trigger has:

  • A cron expression defining when it fires
  • A timezone for interpreting the schedule
  • Optional start/end dates to bound the active period
  • An enabled/disabled toggle

A single workflow can have multiple triggers for different schedules.

Schedule trigger configuration

2. Create a schedule trigger

Navigate to your workflow's Runs & Triggers tab and click New Trigger. Enter a name and schedule (see Create a Trigger for detailed steps).

3. Use natural language schedules

Instead of writing cron expressions, type plain English:

Natural languageResulting cron
every day at 9am0 9 * * *
every Monday at 2:30pm30 14 * * 1
every 6 hours0 */6 * * *
twice a day at 8am and 8pmTwo triggers needed
every weekday at noon0 12 * * 1-5
first of the month at midnight0 0 1 * *

ORQO parses the description using Fugit and stores the canonical cron expression. The original natural language is preserved and displayed alongside it.

tip

If ORQO cannot parse your natural language input, it shows a validation error. Rephrase or fall back to a standard cron expression.

4. Set timezone-aware schedules

Select a timezone from the dropdown when creating or editing a trigger. All fire times are calculated in the selected timezone and then converted to UTC for execution.

This matters for schedules like "every day at 9am" -- without a timezone, 9am means 9:00 UTC. With "America/New_York" selected, it means 9:00 Eastern time, adjusting automatically for daylight saving time.

5. Add date bounds

Use Starts at and Ends at to limit when a trigger is active:

  • A campaign workflow that should only run during March: set starts_at to March 1 and ends_at to March 31
  • A trigger that should begin next Monday: set starts_at to next Monday's date

Triggers outside their date bounds are skipped even if enabled.

6. Manage multiple triggers

Add multiple triggers to the same workflow for complex scheduling needs:

TriggerSchedulePurpose
"Weekday Morning"0 9 * * 1-5Mon-Fri at 9am
"Weekend Afternoon"0 14 * * 0,6Sat-Sun at 2pm
"Monthly Summary"0 0 1 * *First of month

Each trigger operates independently. If two triggers fire at the same time, two separate runs start.

7. Monitor the next fire time

Each trigger card displays the next fire time -- when the trigger will next execute. This updates automatically after each firing.

info

The next fire time is calculated when the trigger is saved or after each execution. It accounts for the timezone and any date bounds you have configured.

8. Enable and disable triggers

Toggle a trigger's Enabled switch to start or stop it from firing. Disabled triggers retain their configuration and schedule -- they simply do not execute.

This is useful for:

  • Pausing a schedule during maintenance
  • Testing a workflow manually before enabling automated runs
  • Temporarily stopping a trigger without deleting its configuration

9. View trigger-initiated runs

Runs started by triggers appear in the run history alongside manual runs. The "Triggered by" column indicates which trigger initiated the run.

10. Delete a trigger

Click a trigger card and click Delete to remove it permanently. This does not affect any runs that were already started by the trigger.

What's next

Learn more