25 lines
701 B
Bash
25 lines
701 B
Bash
|
#!/usr/bin/env bash
|
|||
|
#
|
|||
|
# git config --global alias.pfpr '!sh .github/pfpr.sh'
|
|||
|
|
|||
|
set -e # stop on error
|
|||
|
|
|||
|
usage="$(basename "$0") pr -- Push force a Pull Request branch"
|
|||
|
|
|||
|
if [ "$#" -ne 1 ]; then
|
|||
|
echo "Illegal number of parameters"
|
|||
|
echo "$usage" >&2
|
|||
|
exit 1
|
|||
|
fi
|
|||
|
|
|||
|
command -v jq >/dev/null 2>&1 || { echo "I require jq but it's not installed. Aborting." >&2; exit 1; }
|
|||
|
|
|||
|
set -x # echo on
|
|||
|
|
|||
|
initial=$(git rev-parse --abbrev-ref HEAD)
|
|||
|
pr=$1
|
|||
|
remote=$(curl -s https://api.github.com/repos/containous/traefik/pulls/$pr | jq -r .head.repo.owner.login)
|
|||
|
branch=$(curl -s https://api.github.com/repos/containous/traefik/pulls/$pr | jq -r .head.ref)
|
|||
|
|
|||
|
git push --force-with-lease $remote $pr--$branch:$branch
|