Skip to content

orvanta runs

Manage workflow run history and inspect execution details.

Terminal window
orvanta runs <subcommand> [options]

Trigger a new run of a workflow.

Terminal window
orvanta runs trigger [options]
FlagDescription
--workflow <id-or-name>Workflow to run. Required.
--input <key=value>Pass input context values. Repeatable.
--waitWait for the run to complete before returning.
--jsonOutput run details as JSON.

Example:

Terminal window
orvanta runs trigger --workflow data-ingestion --input env=production --wait

List recent runs.

Terminal window
orvanta runs list [options]
FlagDescription
--workflow <id-or-name>Filter by workflow.
--status <status>Filter by status (queued, running, succeeded, failed, cancelled, awaiting_approval).
--limit <n>Maximum results (default: 20).
--jsonOutput as JSON.

Stream or fetch logs for a run.

Terminal window
orvanta runs logs <run-id> [--follow]
FlagDescription
--followStream live log output (for running runs).
--node <node-id>Filter logs to a specific node.

Show the context snapshot at the end of a run.

Terminal window
orvanta runs context <run-id>

Cancel a queued or running run.

Terminal window
orvanta runs cancel <run-id> [--reason <text>]

Approve a run that is awaiting ConsentGate sign-off.

Terminal window
orvanta runs approve <run-id> [--reason <text>]

Reject a run that is awaiting ConsentGate sign-off.

Terminal window
orvanta runs reject <run-id> [--reason <text>]