CollabOps

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
FlagDescription
-l, --limit <n>Page size (default 20)
--jsonEmit 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 --json

co 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 21325

co run rerun <run-key>

Re-runs a finished workflow run.

co run rerun 21325

Table of Contents