From 2273336c4a59fea12b1f6024a78b4f89cc51de7e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 24 Dec 2025 17:59:33 +0000 Subject: [PATCH] docs: add --repo flag documentation for status command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Document new --repo flag for gh aw status command - Add usage example showing cross-repository status checks - Maintain consistency with enable/disable command documentation - Relates to PR #7504 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- docs/src/content/docs/setup/cli.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/src/content/docs/setup/cli.md b/docs/src/content/docs/setup/cli.md index 85a27fc73a..5d069ba265 100644 --- a/docs/src/content/docs/setup/cli.md +++ b/docs/src/content/docs/setup/cli.md @@ -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`