Skip to content

Instantly share code, notes, and snippets.

@KyMidd

KyMidd/asdf.sh Secret

Last active March 12, 2023 02:52
Show Gist options
  • Select an option

  • Save KyMidd/f54a231e15f9699a30211151c22adb74 to your computer and use it in GitHub Desktop.

Select an option

Save KyMidd/f54a231e15f9699a30211151c22adb74 to your computer and use it in GitHub Desktop.
# 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