-
Notifications
You must be signed in to change notification settings - Fork 1
fix audit_issue_local_iter #18
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
Conversation
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.
Pull request overview
This PR fixes a bug in get_app_issues and adds a missing method to fetch all component issues for a repository. The original implementation incorrectly filtered by component_id without filtering by repo, making it impossible to fetch all issues for a repository.
Key changes:
- Fixed
get_app_issuesto properly filter by repo and make component_id optional - Added
get_component_issues_for_repotool to expose repo-level issue querying - Added
issue_idto the response dictionary for better issue tracking
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <[email protected]>
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.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <[email protected]>
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.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated no new comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
The taskflow assumes that there is a method that fetches all the component issues for a repo, which doesn't exist. This PR adds that method.