23 lines
345 B
Plaintext
23 lines
345 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Open GitHub CI for the current branch
|
||
|
|
||
|
set -e
|
||
|
|
||
|
export GH_NO_UPDATE_NOTIFIER=1
|
||
|
|
||
|
ghoutput=$(gh pr checks)
|
||
|
if [ ! $exitcode -eq 0 ]; then
|
||
|
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"
|