i want to archieve multiple repos at once how can i do that
# Archive specific repos
for repo in OrrisAI1.2 Orris-WEB Orris-Payments-Webhook Orris-Node Orris-RN; do
gh api -X PATCH /repos/OrrisCare/$repo -f archived=true
echo "Archived $repo"
done
gh repo list OrrisCare --limit 100 --json name -q '.[].name' | while read repo; do
gh api -X PATCH /repos/OrrisCare/$repo -f archived=true
echo "Archived $repo"
done
repo scope at GitHub → Settings → Developer Settings → Personal Access Tokens, then:TOKEN="your_pat_here"
ORG="OrrisCare"
for repo in OrrisAI1.2 Orris-WEB Orris-Node Orris-RN Orris-TB Orris-iOS; do
curl -s -X PATCH \
-H "Authorization: token $TOKEN" \
-H "Accept: application/vnd.github+json" \
https://api.github.com/repos/$ORG/$repo \
-d '{"archived": true}' | jq '.name, .archived'
done
archived: false)ok i have archieved what i wanted to now i want to just see the active repo here and hide the archieved ones can it be done?
is:not-archived

| Filter | What it shows |
|---|---|
is:not-archived | All active repos |
is:archived | Only archived repos |
is:not-archived is:private | Active private repos only |
is:not-archived is:public | Active public repos only |
https://github.com/orgs/OrrisCare/repositories?q=is%3Anot-archived
you are wrong search web and tell
GitHub org repositories page filter hide archived repos show only active
archived:false
https://github.com/orgs/OrrisCare/repositories?q=archived%3Afalse
is:not-archived was incorrect; archived:false is the actual syntax GitHub uses.