lorenzovarese / automated-bug-triaging

A machine learning tool for automating the assignment of open issues to the best-suited developers in the VSCode GitHub repository.
MIT License
0 stars 0 forks source link

Fix the data retrieved by `pull_issues.py` #9

Closed lorenzovarese closed 6 days ago

lorenzovarese commented 1 week ago
issue_info = {
                "github_id": issue.number,
                "title": issue.title,
                "body": issue.body,
                "assignee": issue.assignee.login, # Restore
                "created_at": issue.created_at, # Add
                "closed_at": issue.closed_at, # Add
            }
karma-riuk commented 1 week ago

Why are the created_at and closed_at useful for us?