Fix Issue Arborist workflow: use correct search filter to exclude sub-issues#10524
Merged
Fix Issue Arborist workflow: use correct search filter to exclude sub-issues#10524
Conversation
Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Co-authored-by: mnkiefer <8320933+mnkiefer@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Investigate and resolve Issue Arborist workflow effectiveness
Fix Issue Arborist workflow: remove invalid search filter
Jan 18, 2026
Contributor
|
@copilot fix search filter to only include sub issues |
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Contributor
Author
Fixed in commit abaa36c. Changed the search filter from the invalid |
Copilot
AI
changed the title
Fix Issue Arborist workflow: remove invalid search filter
Fix Issue Arborist workflow: use correct search filter to exclude sub-issues
Jan 18, 2026
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 Issue Arborist workflow was analyzing only 10 issues instead of 100, producing no parent issues or links. Root cause: invalid GitHub search qualifier
--search "no:parent-issue"in thegh issue listcommand.Changes
Fixed invalid search filter in
.github/workflows/issue-arborist.md:The correct GitHub search syntax
-parent-issue:*excludes issues that have a parent (i.e., excludes sub-issues), ensuring only top-level issues are analyzed.Updated documentation to accurately reflect that only top-level issues are fetched (excluding sub-issues).
Fixed unrelated linter warnings in
pkg/workflow/create_issue_group_test.go(replacedassert.True(strings.Contains(...))withassert.Contains(...)).Impact
Workflow will now analyze ~100 top-level issues per run instead of 10, substantially improving its ability to identify related issues and create meaningful parent-child relationships while avoiding analyzing issues that are already sub-issues.
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.