Description
Currently, the .issue | .pr command uses a green open pull request emoji when showing open pull requests. Although, when pull requests are drafts in Github, then the colour of the sign will be grey. For example, #623 is a draft PR, and doing .pr 623 currently looks like this:

However, it really should look like this:

Reasoning
I think it would make more sense when it is a draft pr that it should be grey instead of green.
Proposed Implementation
After having a :PRDraft: emoji, check if json_data["draft"] is True, and if it is, use the :PRDraft: emoji.
Would you like to implement this yourself?
Description
Currently, the

.issue|.prcommand uses a green open pull request emoji when showing open pull requests. Although, when pull requests are drafts in Github, then the colour of the sign will be grey. For example, #623 is a draft PR, and doing.pr 623currently looks like this:However, it really should look like this:

Reasoning
I think it would make more sense when it is a draft pr that it should be grey instead of green.
Proposed Implementation
After having a :PRDraft: emoji, check if
json_data["draft"]isTrue, and if it is, use the :PRDraft: emoji.Would you like to implement this yourself?