-
-
Save KyMidd/f54a231e15f9699a30211151c22adb74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Find archived repos | |
| ARCHIVED_REPOS=$(gh repo list $GH_ORG -L 1000 --archived | cut -d "/" -f 2 | cut -f 1) | |
| # Remove archived repos from ALL_REPOS | |
| echo "Removing archived repos, they are read only" | |
| for repo in $ARCHIVED_REPOS; do | |
| ALL_REPOS=$(echo "$ALL_REPOS" | grep -vE "^$repo$") | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment