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
2 changes: 1 addition & 1 deletion cmd/gh-aw/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ Examples:

var compileCmd = &cobra.Command{
Use: "compile [workflow]...",
Short: "Compile agentic workflows from Markdown to GitHub Actions YAML",
Short: "Compile workflow markdown files (.md) into GitHub Actions workflows (.lock.yml)",
Copy link

Copilot AI Mar 7, 2026

Choose a reason for hiding this comment

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

The Short help text uses "markdown" lowercase, while the rest of this command’s help and examples consistently refer to the format as "Markdown" (e.g., "Compile all Markdown files" a few lines below). For consistency in CLI help output, consider capitalizing it here as well.

Suggested change
Short: "Compile workflow markdown files (.md) into GitHub Actions workflows (.lock.yml)",
Short: "Compile workflow Markdown files (.md) into GitHub Actions workflows (.lock.yml)",

Copilot uses AI. Check for mistakes.
Long: `Compile one or more agentic workflows to YAML workflows.

If no workflows are specified, all Markdown files in .github/workflows will be compiled.
Expand Down