Pipelines

Scheduling

Run pipelines on a schedule using cron expressions.

Schedule a pipeline to run automatically on a recurring interval.

Create a schedule

  1. Open the pipeline in the editor.
  2. Click Schedule in the top bar.
  3. Enter a cron expression (e.g., 0 9 * * 1 for every Monday at 9 AM).
  4. Set your timezone.
  5. Toggle the schedule to Enabled.
  6. Click Save.

The schedule runs in the background. You can enable or disable it at any time.

Cron expression examples

  • 0 9 * * 1 — every Monday at 9 AM
  • 0 9 * * * — every day at 9 AM
  • */30 * * * * — every 30 minutes
  • 0 0 1 * * — first day of each month at midnight

Scheduled execution

Each scheduled run:

  1. Uses the current pipeline configuration.
  2. Deducts credits from your account.
  3. Saves output to Reports.
  4. Sends a notification (if enabled).
The execution history tab is coming in an upcoming release.

On this page