23 lines
338 B
Plaintext
Raw Normal View History

2021-07-27 09:46:44 +02:00
#!/usr/bin/env bash
#
# Open GitHub CI for the current branch
set -e
export GH_NO_UPDATE_NOTIFIER=1
ghoutput=$(gh pr checks)
2021-07-27 20:31:27 +02:00
if [ ! $? -eq 0 ]; then
2021-07-27 09:46:44 +02:00
exit 1
fi
url=$(echo $ghoutput | grep -o 'https://.*?' | tr -d '?')
if [ $(uname -s) = "Linux" ]; then
progname="xdg-open"
else
progname="open" # macOS
fi
eval "$progname $url"