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
6 changes: 6 additions & 0 deletions docs/slides/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,12 @@ gh aw logs
# Filter by date range
gh aw logs --start-date -1w accessibility-review

# Cross-run analysis report
gh aw logs --format markdown --count 10
Copy link

Copilot AI Apr 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The cross-run report example omits the optional [workflow] positional argument, while the surrounding examples use a workflow name (accessibility-review). Since --count 10 without a workflow aggregates the last 10 runs across all workflows (which can be noisy and may not match the slide’s intent), consider including an explicit workflow placeholder (e.g., my-workflow) for consistency and clearer copy/paste behavior.

Suggested change
gh aw logs --format markdown --count 10
gh aw logs --format markdown --count 10 accessibility-review

Copilot uses AI. Check for mistakes.

# Audit a specific workflow run
gh aw audit 123456

# Generate the lock file for a workflow
gh aw compile
```
Expand Down
Loading