Files
pull-request-action/pull-request.sh

157 lines
5.3 KiB
Bash
Raw Normal View History

2019-01-31 18:56:56 -05:00
#!/bin/bash
# Suggested by Github actions to be strict
set -e
set -o pipefail
################################################################################
# Global Variables (we can't use GITHUB_ prefix)
################################################################################
API_VERSION=v3
BASE=https://api.github.com
AUTH_HEADER="Authorization: token ${GITHUB_TOKEN}"
HEADER="Accept: application/vnd.github.${API_VERSION}+json"
HEADER="${HEADER}; application/vnd.github.antiope-preview+json; application/vnd.github.shadow-cat-preview+json"
2019-01-31 18:56:56 -05:00
# URLs
REPO_URL="${BASE}/repos/${GITHUB_REPOSITORY}"
PULLS_URL=$REPO_URL/pulls
################################################################################
# Helper Functions
################################################################################
check_credentials() {
if [[ -z "${GITHUB_TOKEN}" ]]; then
echo "You must include the GITHUB_TOKEN as an environment variable."
exit 1
fi
}
check_events_json() {
if [[ ! -f "${GITHUB_EVENT_PATH}" ]]; then
echo "Cannot find Github events file at ${GITHUB_EVENT_PATH}";
exit 1;
fi
echo "Found ${GITHUB_EVENT_PATH}";
2019-01-31 18:56:56 -05:00
}
2019-02-01 17:42:55 -05:00
create_pull_request() {
2019-02-01 17:20:04 -05:00
# JSON strings
SOURCE="$(echo -n "${1}" | jq --raw-input --slurp ".")" # from this branch
TARGET="$(echo -n "${2}" | jq --raw-input --slurp ".")" # pull request TO this target
BODY="$(echo -n "${3}" | jq --raw-input --slurp ".")" # this is the content of the message
TITLE="$(echo -n "${4}" | jq --raw-input --slurp ".")" # pull request title
2019-02-01 17:42:55 -05:00
# JSON boolean
if [[ "${5}" == "true" ]]; then # if PRs are draft
DRAFT="true";
else
DRAFT="false";
fi
2019-02-01 17:42:55 -05:00
# Check if the branch already has a pull request open
DATA="{\"base\":${TARGET}, \"head\":${SOURCE}, \"body\":${BODY}}"
2019-02-01 17:20:04 -05:00
RESPONSE=$(curl -sSL -H "${AUTH_HEADER}" -H "${HEADER}" --user "${GITHUB_ACTOR}" -X GET --data "${DATA}" ${PULLS_URL})
2019-02-01 17:39:21 -05:00
PR=$(echo "${RESPONSE}" | jq --raw-output '.[] | .head.ref')
echo "Response ref: ${PR}"
2019-02-01 17:20:04 -05:00
2019-02-01 17:42:55 -05:00
# Option 1: The pull request is already open
if [[ "${PR}" == "${SOURCE}" ]]; then
2019-02-01 17:20:04 -05:00
echo "Pull request from ${SOURCE} to ${TARGET} is already open!"
2019-02-01 17:42:55 -05:00
# Option 2: Open a new pull request
2019-02-01 17:31:25 -05:00
else
# Post the pull request
DATA="{\"title\":${TITLE}, \"body\":${BODY}, \"base\":${TARGET}, \"head\":${SOURCE}, \"draft\":${DRAFT}}"
2019-02-01 17:31:25 -05:00
echo "curl --user ${GITHUB_ACTOR} -X POST --data ${DATA} ${PULLS_URL}"
curl -sSL -H "${AUTH_HEADER}" -H "${HEADER}" --user "${GITHUB_ACTOR}" -X POST --data "${DATA}" ${PULLS_URL}
echo $?
2019-02-01 17:20:04 -05:00
fi
2019-02-01 13:31:55 -05:00
}
2019-01-31 18:56:56 -05:00
main () {
# path to file that contains the POST response of the event
# Example: https://github.com/actions/bin/tree/master/debug
# Value: /github/workflow/event.json
check_events_json;
# User specified branch to PR to, and check
if [ -z "${BRANCH_PREFIX}" ]; then
echo "No branch prefix is set, all branches will be used."
BRANCH_PREFIX=""
2019-01-31 19:12:16 -05:00
echo "Branch prefix is $BRANCH_PREFIX"
2019-01-31 18:56:56 -05:00
fi
if [ -z "${PULL_REQUEST_BRANCH}" ]; then
PULL_REQUEST_BRANCH=master
fi
echo "Pull requests will go to ${PULL_REQUEST_BRANCH}"
if [ -z "${PULL_REQUEST_DRAFT}" ]; then
echo "No explicit preference for draft PR: created PRs will be normal PRs."
PULL_REQUEST_DRAFT="false"
else
echo "Environment variable PULL_REQUEST_DRAFT set to a value: created PRs will be draft PRs."
PULL_REQUEST_DRAFT="true"
fi
2019-01-31 18:56:56 -05:00
# Get the name of the action that was triggered
BRANCH=$(jq --raw-output .ref "${GITHUB_EVENT_PATH}");
2019-01-31 19:12:16 -05:00
BRANCH=$(echo "${BRANCH/refs\/heads\//}")
if [[ "$BRANCH" != "null" ]]; then
echo "Found branch $BRANCH"
else
echo "No trigger branch found in event data. Using '$BRANCH_PREFIX' as BRANCH instead."
BRANCH="$BRANCH_PREFIX"
fi
2019-03-20 10:05:38 -04:00
2019-01-31 18:56:56 -05:00
# If it's to the target branch, ignore it
2019-01-31 19:03:56 -05:00
if [[ "${BRANCH}" == "${PULL_REQUEST_BRANCH}" ]]; then
2019-01-31 18:56:56 -05:00
echo "Target and current branch are identical (${BRANCH}), skipping."
else
# If the prefix for the branch matches
if [[ $BRANCH == ${BRANCH_PREFIX}* ]]; then
# Ensure we have a GitHub token
check_credentials
2019-03-20 10:05:38 -04:00
# Pull request body (optional)
if [ -z "${PULL_REQUEST_BODY}" ]; then
echo "No pull request body is set, will use default."
PULL_REQUEST_BODY="This is an automated pull request to update the container collection ${BRANCH}"
fi
2019-05-21 01:59:51 -07:00
echo "Pull request body is ${PULL_REQUEST_BODY}"
2019-03-20 10:05:38 -04:00
# Pull request title (optional)
if [ -z "${PULL_REQUEST_TITLE}" ]; then
echo "No pull request title is set, will use default."
PULL_REQUEST_TITLE="Update container ${BRANCH}"
fi
2019-05-21 01:59:51 -07:00
echo "Pull request title is ${PULL_REQUEST_TITLE}"
2019-03-20 10:05:38 -04:00
2019-05-21 01:59:51 -07:00
create_pull_request "${BRANCH}" "${PULL_REQUEST_BRANCH}" "${PULL_REQUEST_BODY}" "${PULL_REQUEST_TITLE}" "${PULL_REQUEST_DRAFT}"
2019-01-31 18:56:56 -05:00
fi
fi
}
echo "==========================================================================
START: Running Pull Request on Branch Update Action!";
main;
echo "==========================================================================
END: Finished";