You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds `open_grouped_issues` option that will group a single violation's
issues in one issue (in addition to the individual issues filed).
Note: in it's current state, grouped issues will only open when new
issues are found. If there are existing issues in the repo (I.e. the
scans have run multiple times before), grouped issues will not be opened
for those. This is a known limitation at this point that we plan to
address in the future if it becomes troublesome.
Example:
<img width="935" height="425" alt="Screen shot of a new grouped issue,
with the title 'heading levels should only increase by one issues' and
the body of the issue is a checklist of 3 linked issues with this
violation"
src="https://github.com/user-attachments/assets/1629aff2-3161-42a5-a680-5022ebcdcc06"
/>
Also fixes the `site-with-errors.test.ts` which was failing if Copilot
failed to create PRs (which can happen). The new logic will only check
the PR author, state, and assignee if the PRs exist.
Copy file name to clipboardExpand all lines: .github/actions/file/action.yml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,10 @@ inputs:
17
17
screenshot_repository:
18
18
description: "Repository (with owner) where screenshots are stored on the gh-cache branch. Defaults to the 'repository' input if not set. Required if issues are open in a different repo to construct proper screenshot URLs."
19
19
required: false
20
+
open_grouped_issues:
21
+
description: "In the 'file' step, also open grouped issues which link to all issues with the same root cause"
0 commit comments