-
Notifications
You must be signed in to change notification settings - Fork 359
[workflow-style] Normalize report formatting guidance across reporting workflows #27481
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -337,6 +337,10 @@ All ADRs are stored in `docs/adr/` as Markdown files numbered by PR number (e.g. | |||||
| > 🔒 *This PR cannot merge until an ADR is linked in the PR body.* | ||||||
| ``` | ||||||
|
|
||||||
| ### Report Formatting | ||||||
|
|
||||||
| - **Report Formatting**: Use h3 (###) or lower for all headers in your report to maintain proper document hierarchy. Wrap long sections in `<details><summary>Section Name</summary>` tags to improve readability and reduce scrolling. | ||||||
|
||||||
| - **Report Formatting**: Use h3 (###) or lower for all headers in your report to maintain proper document hierarchy. Wrap long sections in `<details><summary>Section Name</summary>` tags to improve readability and reduce scrolling. | |
| - **Report Formatting**: Use h3 (###) or lower for all headers in your report to maintain proper document hierarchy. Wrap long sections in a complete `<details>` block such as `<details><summary>Section Name</summary>...</details>` to improve readability and reduce scrolling. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -328,9 +328,10 @@ The following specifications are outdated: | |||||
| 1. **Be thorough**: Check ALL packages, not just a sample | ||||||
| 2. **Be precise**: Reference exact file paths, function names, and dates | ||||||
| 3. **Be actionable**: Every finding should have a clear recommendation | ||||||
| 4. **Use progressive disclosure**: Wrap details in `<details>` tags | ||||||
| 5. **One issue per run**: The `max: 1` limit ensures no issue spam | ||||||
| 6. **Skip if open**: The `skip-if-match` rule prevents duplicate issues | ||||||
| 4. **Report Formatting**: Use h3 (###) or lower for all headers in your report to maintain proper document hierarchy. Wrap long sections in `<details><summary>Section Name</summary>` tags to improve readability and reduce scrolling. | ||||||
|
||||||
| 4. **Report Formatting**: Use h3 (###) or lower for all headers in your report to maintain proper document hierarchy. Wrap long sections in `<details><summary>Section Name</summary>` tags to improve readability and reduce scrolling. | |
| 4. **Report Formatting**: Use h3 (###) or lower for all headers in your report to maintain proper document hierarchy. Wrap long sections in the complete `<details><summary>Section Name</summary>\n\nContent\n</details>` pattern to improve readability and reduce scrolling. |
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -451,6 +451,9 @@ After posting the comment, submit a pull request review based on the verdict: | |||||||||||
|
|
||||||||||||
| ## Guidelines | ||||||||||||
|
|
||||||||||||
| ### Report Formatting | ||||||||||||
| - **Report Formatting**: Use h3 (###) or lower for all headers in your report to maintain proper document hierarchy. Wrap long sections in `<details><summary>Section Name</summary>` tags to improve readability and reduce scrolling. | ||||||||||||
|
|
||||||||||||
|
Comment on lines
+455
to
+456
|
||||||||||||
| - **Report Formatting**: Use h3 (###) or lower for all headers in your report to maintain proper document hierarchy. Wrap long sections in `<details><summary>Section Name</summary>` tags to improve readability and reduce scrolling. | |
| - **Report Formatting**: Use h3 (###) or lower for all headers in your report to maintain proper document hierarchy. Wrap long sections in a full `<details>…</details>` block, for example: `<details><summary>Section Name</summary> | |
| Section content | |
| </details>`, to improve readability and reduce scrolling. |
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
<details><summary>Section Name</summary>snippet is incomplete without a closing</details>(and usually a blank line after</summary>). To avoid agents producing broken disclosure blocks, update this rule to show/require the full<details>…</details>structure.