Snippet to find most upvoted issues in waiting for user interest #2215
Closed
matthewmayer
started this conversation in
Ideas
Replies: 1 comment
-
GitHub allows this feature natively in the browser. You can simply open the following link: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Using gh and jq you can run
gh issue list --json number,title,reactionGroups --label "s: waiting for user interest" | jq '[.[] | {number: .number, votes: (.reactionGroups[] | select(.content == "THUMBS_UP").users.totalCount), title: .title}] | sort_by(.votes) | reverse'
and you get output like this, quite neat!
Beta Was this translation helpful? Give feedback.
All reactions