updated github_pull_request_create.sh

pull/16/head
Hari Sekhon 2 years ago
parent a3cb4ade7f
commit 62ab86d332

@ -102,6 +102,9 @@ else
head_name="$head"
fi
title="${GITHUB_PULL_REQUEST_TITLE:-Merge $head branch into $base branch}"
body="${GITHUB_PULL_REQUEST_BODY:-Created automatically by script \`${0##*/}\` in the [DevOps Bash tools](https://github.com/HariSekhon/DevOps-Bash-tools) repo}"
total_commits="$(gh api "/repos/$owner/$repo/compare/$base...$head" -q '.total_commits')"
if [ "$total_commits" -gt 0 ]; then
# check for existing PR between these branches before creating another
@ -124,8 +127,8 @@ if [ "$total_commits" -gt 0 ]; then
gh pr create -R "$owner/$repo" \
--base "$base" \
--head "$head" \
--title "Merge $head branch into $base branch" \
--body "Created automatically by script \`${0##*/}\` in the [DevOps Bash tools](https://github.com/HariSekhon/DevOps-Bash-tools) repo." \
--title "$title" \
--body "$body" \
--no-maintainer-edit
echo >&2
else

Loading…
Cancel
Save