Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/src/content/docs/setup/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -405,11 +405,12 @@ gh aw status # Show all workflow status
gh aw status --ref main # Show status with latest run info for main branch
gh aw status --json --ref feature-branch # JSON output with run status for specific branch
gh aw status --label automation # Filter workflows by label
gh aw status --repo owner/other-repo # Check status in different repository
```

Lists all agentic workflows with their current state, enabled/disabled status, schedules, labels, and configurations. When `--ref` is specified, includes the latest run status and conclusion for each workflow on that branch or tag.

**Options:** `--ref` (filter by branch or tag, shows latest run status and conclusion), `--label` (filter workflows by label, case-insensitive match), `--json` (output in JSON format)
**Options:** `--ref` (filter by branch or tag, shows latest run status and conclusion), `--label` (filter workflows by label, case-insensitive match), `--json` (output in JSON format), `--repo owner/repo` (check workflow status in specific repository, defaults to current)

#### `logs`

Expand Down