Running, scheduling and CI

Run live, schedule as a monitor, and gate deploys in CI.

workbooksschedulecicdrun

Running, scheduling and CI

Running and live progress

Click Run to execute now; the timeline streams each node's status and the agentic narration live. Every run is saved with its outputs and a report you can share.

Scheduling

Turn any Workbook into a continuous monitor with a cron schedule and timezone. Combine with alert rules so a failed scheduled run pages on-call.

schedule: "0 */15 * * * *"   # every 15 minutes
timezone: "UTC"
Watch out: schedules use a 6-field cron expression — the first field is seconds (sec min hour day month weekday). A standard 5-field crontab string won't validate; prepend a 0. The timezone defaults to UTC, so "daily at 09:00" means 09:00 UTC unless you set your own timezone on the schedule.

CI/CD release gate

Trigger a Workbook from your pipeline on every deploy and fail the build if the journey (or an AI model's quality) regresses:

# in your pipeline
curl -fsS -X POST https://app.verops.io/api/workflow-executions/run \
  -H "Authorization: Bearer $VEROPS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"workflowId": 51, "triggeredBy": "ci"}'
# poll the execution; non-zero / failed status fails the build

Reliability analytics

Per-workbook trends show flakiness and duration baselines, and AI features add a quality trend, so you can see regressions over time, not just the latest run.