forked from HariSekhon/DevOps-Bash-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_push_pr.sh
More file actions
executable file
·79 lines (62 loc) · 2.08 KB
/
github_push_pr.sh
File metadata and controls
executable file
·79 lines (62 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2022-07-15 11:16:44 +0100 (Fri, 15 Jul 2022)
#
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck disable=SC1090,SC1091
. "$srcdir/lib/github.sh"
# shellcheck disable=SC2034,SC2154
usage_description="
Pushes the current branch to GitHub origin, sets upstream branch, then raises a Pull Request to the given or default branch
If \$GITHUB_MERGE_PULL_REQUEST=true then will automatically merge the pull request as well
If \$GITHUB_MERGE_PULL_REQUEST_AS_ADMIN=true then will merge as admin to bypass branch merge protection
"
# used by usage() in lib/utils.sh
# shellcheck disable=SC2034
usage_args="[<target_base_branch> <title> <description>]"
help_usage "$@"
#min_args 1 "$@"
max_args 3 "$@"
check_github_origin
base_branch="${1:-$(default_branch)}"
export GITHUB_PULL_REQUEST_TITLE="${2:-}"
export GITHUB_PULL_REQUEST_BODY="${3:-}"
current_branch="$(current_branch)"
git push --set-upstream origin "$(current_branch)"
echo
output="$("$srcdir/github_pull_request_create.sh" "$current_branch" "$base_branch")"
echo "$output"
echo
if [ -z "$output" ]; then
die "Pull request not created"
fi
url="$(parse_pull_request_url "$output")"
if [ "${GITHUB_MERGE_PULL_REQUEST:-}" = true ]; then
args=""
if [ "${GITHUB_MERGE_PULL_REQUEST_AS_ADMIN:-}" = true ]; then
args="--admin"
fi
timestamp "Merging Pull Request: $url"
gh pr merge --merge "$url" $args
fi
if is_mac; then
echo "Opening Pull Request"
open "$url"
elif [ -n "${BROWSER:-}" ]; then
echo "Opening Pull Request using \$BROWSER"
"$BROWSER" "$url"
else
echo "\$BROWSER environment variable not set and not on Mac to use default browser, not opening browser"
fi