-
Notifications
You must be signed in to change notification settings - Fork 374
fix(copilot-agent-analysis): normalize Phase 6 report template to h3+ headers with progressive disclosure #28832
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -825,12 +825,11 @@ on: | |
|
|
||
| # Option 1: Single label name that must match the triggering label (e.g., | ||
| # 'panel-review') | ||
| labels: "example-value" | ||
|
|
||
| # Option 2: List of label names; the workflow fires when the triggering label | ||
| # matches any entry. | ||
| labels: [] | ||
| # Array items: Label name (e.g., 'panel-review', 'needs-triage') | ||
| # Array items: undefined | ||
|
Comment on lines
829
to
+832
|
||
|
|
||
| # Environment name that requires manual approval before the workflow can run. Must | ||
| # match a valid environment configured in the repository settings. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
labelsfrontmatter section’s documentation looks broken: Option 1 describes a single label string but no example value is provided, and the array form’s item description isundefined. This should mirror the established pattern used for other oneOf fields in this file (e.g.,rolesabove) by including a scalar example (e.g.,labels: "example-value") and replacingArray items: undefinedwith a clear label name description.See below for a potential fix: