co run — workflow runs
Inspect and control CI/CD workflow runs — list / view / logs / cancel / rerun
co run inspects and controls CI/CD workflow runs. Every run-key is an integer number within the workspace.
co run list
Lists recent workflow runs in the current workspace.
co run list
co run list -l 50 # page size
co run list --json # JSON instead of the UI table| Flag | Description |
|---|---|
| -l, --limit <n> | Page size (default 20) |
| --json | Emit JSON instead of the UI table |
| --workspace <slug> | Override workspace |
co run view <run-key>
Shows details for a run. Use --json for the structured payload.
co run view 21325
co run view 21325 --jsonco run logs <run-key>
Prints the per-task log summary for a run. Step-level detail varies by workflow, so use --json for the full structured logs (steps included).
co run logs 21325
co run logs 21325 --json # full structured logs (steps included)co run cancel <run-key>
Cancels a running workflow run.
co run cancel 21325co run rerun <run-key>
Re-runs a finished workflow run.
co run rerun 21325