This file contains 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
#!/bin/bash | |
# Set the GitHub organization from the environment variable or default to "sctg-development" | |
GITHUB_ORG=${GITHUB_ORG:-"sctg-development"} | |
# Set the GitHub API endpoint | |
GH_API_Endpoint="https://api.github.com/orgs/${GITHUB_ORG}/repos" | |
# Check if the required command-line tools are installed | |
if ! command -v curl &> /dev/null; then |