-
-
Save KyMidd/c1b7a6805fc40aebbe03365f66a28f0a to your computer and use it in GitHub Desktop.
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 | |
# Check for required variables to be set, and if not present, exit 0 | |
if [ -z "$GITHUB_TOKEN" ] || [ -z "$GITHUB_APP_INSTALLATION_ID" ] || [ -z "$GH_ORG" ] || [ -z "$TOPIC" ]; then | |
echo "One or more required variables not set, exiting" | |
exit 0 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment