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 # at most 50
co run list -l 0 # everything| Flag | Description |
|---|---|
| -l, --limit <n> | Maximum items to fetch across pages. 0 = all. Default 20 |
| -W, --workspace <slug> | Workspace slug for this run, overriding the saved default (global flag) |
co run view <run-key>
Shows details for a run. Use --json for the structured payload.
co run view 21325co 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 21325co 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