-
-
Save danielpza/8e844d4c264dee8659c83fa9c3003eba to your computer and use it in GitHub Desktop.
gh cli extension to check the status of the last pushed commit
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
#!/usr/bin/env bash | |
set -e | |
commit="$(git rev-parse HEAD)" | |
while true; do | |
clear | |
gh run list --commit "$commit" | |
sleep 5 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment