20 lines
525 B
Plaintext
20 lines
525 B
Plaintext
|
#!/usr/bin/env ksh
|
||
|
if [[ $1 = "pc" || ( $1 = "pr" && $2 = "create" ) ]]
|
||
|
then
|
||
|
tmp=$(mktemp /tmp/g.XXXXXXXXXXX.md)
|
||
|
if [[ -f ~/.g.template ]]
|
||
|
then
|
||
|
lps=$(git show --pretty='format:%s' --no-patch | cut -d' ' -f1)
|
||
|
if [[ ! -z $lps ]]
|
||
|
then
|
||
|
url="https://issues.liferay.com/browse/"$lps
|
||
|
sed -e "s/{lps}/$lps/g" -e "s,{url},$url," <~/.g.template >$tmp
|
||
|
fi
|
||
|
fi
|
||
|
${GH_EDITOR:-${VISUAL:-${EDITOR:-ed}}} ${tmp} >/dev/null
|
||
|
gh $@ --title "$(head -1 $tmp)" --body "$(tail -n +3 $tmp)"
|
||
|
mv -f $tmp /tmp/g.lastpr
|
||
|
else
|
||
|
gh $@
|
||
|
fi
|