Skip to content

Instantly share code, notes, and snippets.

@KyMidd

KyMidd/asdf.sh Secret

Created November 20, 2022 18:58
Show Gist options
  • Select an option

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

Select an option

Save KyMidd/be58296b754ef50d9fa8fd79437e94a2 to your computer and use it in GitHub Desktop.
while IFS="," read -r GH_ORG GH_REPO REQUIRED_APPROVERS_COUNT COLLECTION_LEAD_TEAM_GITHUB_SLUG
do
(etc.)
# If approvers count isn't set, default to 1
if [ -z "$REQUIRED_APPROVERS_COUNT" ]; then
REQUIRED_APPROVERS_COUNT=1
fi
done < repo_info.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment