mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
feat: Add comment count to issue output
This commit is contained in:
parent
0030d11ac7
commit
2cabf9718c
1 changed files with 2 additions and 2 deletions
|
@ -108,10 +108,10 @@ def main():
|
|||
print(f"Open issues: {len(issues)}")
|
||||
sorted_issues = sorted(issues, key=lambda x: x["number"], reverse=True)
|
||||
for issue in sorted_issues:
|
||||
print(f" - #{issue['number']}: {issue['html_url']}")
|
||||
print(f" - #{issue['number']}: {issue['comments']} comments {issue['html_url']}")
|
||||
|
||||
print(
|
||||
f"Oldest issue: #{oldest_issue['number']}: {oldest_issue['html_url']} (created on"
|
||||
f"Oldest issue: #{oldest_issue['number']}: {oldest_issue['comments']} comments {oldest_issue['html_url']} (created on"
|
||||
f" {oldest_issue['created_at']})"
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue