-
-
Save KyMidd/8e64a76dca0344b6599c2b31cdf4d71a 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
| if [[ $(echo "$ALL_BRANCHES" | grep -E "^master$") ]]; then | |
| branch_protections_rest BRANCH='master' | |
| fi | |
| if [[ $(echo "$ALL_BRANCHES" | grep -E "^develop$") ]]; then | |
| branch_protections_rest BRANCH='develop' | |
| fi | |
| if [[ $(echo "$ALL_BRANCHES" | grep -E "^main$") ]]; then | |
| branch_protections_rest BRANCH='main' | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment