mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
feat: exclude pull requests from unlabeled issues search
This commit is contained in:
parent
17351e8f91
commit
2dd83e7dbe
1 changed files with 4 additions and 0 deletions
|
@ -115,6 +115,10 @@ def comment_and_close_duplicate(issue, oldest_issue):
|
|||
def find_unlabeled_with_paul_comments(issues):
|
||||
unlabeled_issues = []
|
||||
for issue in issues:
|
||||
# Skip pull requests
|
||||
if "pull_request" in issue:
|
||||
continue
|
||||
|
||||
if not issue["labels"] and issue["state"] == "open":
|
||||
# Get comments for this issue
|
||||
comments_url = (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue