Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to filter issues on GitHub by issue id?

Tags:

github

I need to filter issues by id. For instance, I have #1, #2, #3, #4 issues, and I need to show only 2nd and 3rd issues (#2, #3). Is it possible?

like image 486
Alex Avatar asked Feb 09 '15 12:02

Alex


2 Answers

Expanding on Jana's answer above, you can also type the issue's ID (or several IDs) into the Filters' search bar without the hash symbol (#). For example if you want to see issues #66 #42 #17, you can just enter 66 42 17 to show only those issues.

enter image description here

like image 51
glitchform Avatar answered Oct 21 '22 22:10

glitchform


To show a special issue, for example issue #4, you could just write the ID in the URL like this:

https://github.com/unknown-horizons/unknown-horizons/issues/4

like image 26
Jana Avatar answered Oct 21 '22 20:10

Jana