Skip to content

[Feature] Include assignees in find-issues #189

@danielcompton

Description

@danielcompton

🥰 需求描述 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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions