Use details/summary for progressive disclosure of failure reporting tip#24229
Merged
Use details/summary for progressive disclosure of failure reporting tip#24229
Conversation
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/6c82709f-69d4-407f-8586-9c45523d041c Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
pelikhan
April 3, 2026 04:45
View session
pelikhan
approved these changes
Apr 3, 2026
pelikhan
reviewed
Apr 3, 2026
| > safe-outputs: | ||
| > report-failure-as-issue: false | ||
| > ``` | ||
| <details> |
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the agent failure issue template to reduce noise by hiding the “stop reporting failure” guidance behind a collapsible <details>/<summary> section, consistent with other progressive-disclosure sections in the template.
Changes:
- Replaced the always-visible
[!TIP]block with a<details>/<summary>collapsible section for the failure-reporting configuration guidance.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| > report-failure-as-issue: false | ||
| > ``` | ||
| <details> | ||
| <summary><b>Stop reporting this workflow as a failure</b></summary> |
There was a problem hiding this comment.
The <summary> text says "Stop reporting this workflow as a failure", but the section body describes stopping failure issue creation. Consider updating the summary wording to match (e.g., "Stop reporting failure issues for this workflow") to avoid implying the workflow will no longer be marked as failed.
Suggested change
| <summary><b>Stop reporting this workflow as a failure</b></summary> | |
| <summary><b>Stop reporting failure issues for this workflow</b></summary> |
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/76485015-9be8-4b4e-ac60-ec46ff1fa2b3 Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The "stop reporting failure" tip in agent failure issues was rendered as a
[!TIP]blockquote, making it always visible and adding noise to the issue body. Wraps it in a<details>/<summary>collapsible block, consistent with the existing "Debug with any coding agent" and "Manually invoke the agent" sections.