Inspect and filter CI workflows from the CLI
Two new depot ci workflow commands for working with CI workflows from the terminal.
depot ci workflow list queries recent workflows for your organization. Results include the workflow name, repo, status, trigger, commit SHA, and job counts.
# List recent workflows
depot ci workflow list
# Filter by status and repo
depot ci workflow list --status failed --repo my-org/my-repo
# Filter by trigger or SHA prefix
depot ci workflow list --trigger push --sha abc123
# Filter by PR number (requires --repo)
depot ci workflow list --repo my-org/my-repo --pr 42
# Output as JSON
depot ci workflow list --output jsonThe --status flag is repeatable, and -n controls how many results to return (default 50, max 200).
depot ci workflow show <workflow-id> fetches a single workflow with its full run context, jobs, and attempts. It also accepts --output json and is aliased as depot ci workflow get.
For details, see the Depot CI CLI reference.