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
| #!/bin/bash | |
| # Script to find all issues in a repository that a user is subscribed to and add a label | |
| # Check if gum is installed | |
| if ! command -v gum &> /dev/null; then | |
| echo "Error: gum is not installed. Install it with:" | |
| echo " brew install gum" | |
| echo " or visit: https://github.com/charmbracelet/gum" | |
| exit 1 |
OlderNewer