Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GitHub organization filter repositories by non-archived

Tags:

github

Our GitHub organization has an approximate ratio of 5:1 archived to non-archived repositories making finding active (i.e. non-archived) repositories hard.

How can the repositories of an organization be filtered to non-archived repositories to make navigation manageable?

enter image description here

like image 569
sabrehagen Avatar asked Nov 21 '25 21:11

sabrehagen


1 Answers

You can use archived:false filter in the search field.

Or add it to the URL as a GET parameter, if you need to link it somewhere else. https://github.com/orgs/%org-name%/repositories?q=archived:false

Source: GitHub Docs

like image 123
VChet Avatar answered Nov 24 '25 04:11

VChet