-
Notifications
You must be signed in to change notification settings - Fork 47
Closed
Labels
Description
🥰 需求描述 Description of Requirement
We would like to see the issue assignees in the output
of the find-issues
command.
🧐 解决方案 Solution
Add a new assignees property to the output:
[
{number: 1, auth: 'x', body: 'xxx', body: 'xxx', state: 'open', created: '', updated: '', assignees: ['x', 'y']},
{number: 2, auth: 'x', body: 'xxx', body: 'xxx', state: 'closed', created: '', updated: '', assignees: ['y']}
]
Another possible option would be:
[
{number: 1, auth: 'x', body: 'xxx', body: 'xxx', state: 'open', created: '', updated: '', assignees: [{login: 'x'}, {login: 'y'}]},
{number: 2, auth: 'x', body: 'xxx', body: 'xxx', state: 'closed', created: '', updated: '', assignees: [{login: 'y'}]},
]
🚑 其他信息 Other information
toby-whimsical