Skip to content

Instantly share code, notes, and snippets.

@danielpza
danielpza / gh-s
Last active August 23, 2024 01:56
gh cli extension to check the status of the last pushed commit
#!/usr/bin/env bash
set -e
commit="$(git rev-parse HEAD)"
while true; do
clear
gh run list --commit "$commit"
sleep 5
done