dotfiles/script/jira

38 lines
738 B
Plaintext
Raw Normal View History

2021-07-19 13:19:04 +00:00
#!/usr/bin/env bash
#
# jira - jump to a Jira ticket in the browser, based on Git branch name convention.
2024-05-20 07:02:59 +00:00
set -e -o pipefail
2021-07-19 13:19:04 +00:00
if [ -z "$JIRADOMAIN" ]; then
2023-10-07 08:43:32 +00:00
# shellcheck disable=SC2016
2021-07-19 13:19:04 +00:00
echo 'set $JIRADOMAIN first'
exit 1
fi
2023-10-07 08:43:32 +00:00
if ! branchname="$(branchname)"; then
echo "branchname returned exit code: $?"
exit 1
fi
2021-07-19 13:19:04 +00:00
if ! echo "$branchname" | grep -q "/"; then
echo "no ticket number found in branch name: $branchname"
exit 1
fi
ticket=$(echo "$branchname" | cut -d "/" -f1 | tr '[:lower:]' '[:upper:]')
url="$JIRADOMAIN/browse/$ticket"
if [ "$1" == "-b" ]; then
2023-10-07 08:43:32 +00:00
if [ "$(uname -s)" = "Linux" ]; then
progname="xdg-open"
else
progname="open" # macOS
fi
eval "$progname $url"
exit $?
2021-07-19 13:19:04 +00:00
fi
2023-10-07 08:43:32 +00:00
printf "%s" "$url"