2022-02-14 23:28:12 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-11-04 21:21:49 +00:00
|
|
|
set -euo pipefail
|
2022-02-14 23:28:12 +00:00
|
|
|
|
2022-07-22 00:33:15 +00:00
|
|
|
INITIAL_COMMIT="false"
|
2022-10-14 19:01:08 +00:00
|
|
|
GITHUB_OUTPUT=${GITHUB_OUTPUT:-""}
|
2022-12-13 20:24:35 +00:00
|
|
|
EXTRA_ARGS="--no-tags --prune --no-recurse-submodules"
|
2022-11-17 15:24:46 +00:00
|
|
|
PREVIOUS_SHA=""
|
|
|
|
CURRENT_SHA=""
|
2022-12-10 06:52:38 +00:00
|
|
|
DIFF="..."
|
2022-11-07 06:28:15 +00:00
|
|
|
|
|
|
|
if [[ "$GITHUB_REF" == "refs/tags/"* ]]; then
|
2022-12-13 20:24:35 +00:00
|
|
|
EXTRA_ARGS="--prune --no-recurse-submodules"
|
2022-11-07 06:28:15 +00:00
|
|
|
fi
|
2022-07-22 00:33:15 +00:00
|
|
|
|
2022-12-10 06:52:38 +00:00
|
|
|
if [[ "$GITHUB_EVENT_HEAD_REPO_FORK" == "true" ]]; then
|
|
|
|
DIFF=".."
|
|
|
|
fi
|
|
|
|
|
2022-02-14 23:28:12 +00:00
|
|
|
echo "::group::changed-files-diff-sha"
|
|
|
|
|
|
|
|
if [[ -n $INPUT_PATH ]]; then
|
|
|
|
REPO_DIR="$GITHUB_WORKSPACE/$INPUT_PATH"
|
2022-05-30 00:32:23 +00:00
|
|
|
|
2022-06-11 16:51:58 +00:00
|
|
|
echo "::debug::Resolving repository path: $REPO_DIR"
|
2022-02-14 23:28:12 +00:00
|
|
|
if [[ ! -d "$REPO_DIR" ]]; then
|
2022-06-24 04:17:41 +00:00
|
|
|
echo "::error::Invalid repository path: $REPO_DIR"
|
2022-02-14 23:28:12 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
cd "$REPO_DIR"
|
|
|
|
fi
|
|
|
|
|
2022-08-21 16:44:28 +00:00
|
|
|
function __version() {
|
|
|
|
echo "$@" | awk -F. '{ printf("%d%03d%03d%03d\n", $1,$2,$3,$4); }';
|
2022-08-13 21:50:50 +00:00
|
|
|
}
|
|
|
|
|
2022-10-31 03:03:21 +00:00
|
|
|
echo "Verifying git version..."
|
|
|
|
|
2022-09-03 00:23:52 +00:00
|
|
|
GIT_VERSION=$(git --version | awk '{print $3}') && exit_status=$? || exit_status=$?
|
2022-06-24 04:17:41 +00:00
|
|
|
|
|
|
|
if [[ $exit_status -ne 0 ]]; then
|
|
|
|
echo "::error::git not installed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-08-13 21:50:50 +00:00
|
|
|
if [[ $(__version "$GIT_VERSION") -lt $(__version "2.18.0") ]]; then
|
2022-10-31 03:03:21 +00:00
|
|
|
echo "::error::Invalid git version. Please upgrade ($GIT_VERSION) to >= (2.18.0)"
|
2022-08-13 21:50:50 +00:00
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "Valid git version found: ($GIT_VERSION)"
|
|
|
|
fi
|
|
|
|
|
2022-11-03 18:29:02 +00:00
|
|
|
if [[ -z $GITHUB_BASE_REF ]]; then
|
|
|
|
echo "Running on a push event..."
|
2022-12-05 21:29:20 +00:00
|
|
|
TARGET_BRANCH=$GITHUB_REFNAME
|
2022-12-05 21:34:38 +00:00
|
|
|
CURRENT_BRANCH=$TARGET_BRANCH
|
2022-02-14 23:28:12 +00:00
|
|
|
|
2022-11-03 18:29:02 +00:00
|
|
|
echo "::debug::Getting HEAD SHA..."
|
|
|
|
if [[ -n "$INPUT_UNTIL" ]]; then
|
|
|
|
echo "::debug::Getting HEAD SHA for '$INPUT_UNTIL'..."
|
|
|
|
CURRENT_SHA=$(git log -1 --format="%H" --date=local --until="$INPUT_UNTIL") && exit_status=$? || exit_status=$?
|
2022-10-16 00:21:02 +00:00
|
|
|
|
2022-11-03 18:29:02 +00:00
|
|
|
if [[ $exit_status -ne 0 ]]; then
|
|
|
|
echo "::error::Invalid until date: $INPUT_UNTIL"
|
|
|
|
exit 1
|
|
|
|
fi
|
2022-10-16 00:21:02 +00:00
|
|
|
else
|
2022-11-03 18:29:02 +00:00
|
|
|
if [[ -z $INPUT_SHA ]]; then
|
2022-11-04 02:12:34 +00:00
|
|
|
CURRENT_SHA=$(git rev-list -n 1 HEAD 2>&1) && exit_status=$? || exit_status=$?
|
2022-11-03 18:29:02 +00:00
|
|
|
else
|
2022-12-05 07:12:48 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-12-13 20:51:00 +00:00
|
|
|
git fetch $EXTRA_ARGS -u --progress --deepen="$INPUT_FETCH_DEPTH" origin "$CURRENT_BRANCH" 1>/dev/null 2>&1
|
2022-12-10 06:49:27 +00:00
|
|
|
CURRENT_SHA=$INPUT_SHA; exit_status=$?
|
2022-11-03 18:29:02 +00:00
|
|
|
fi
|
2022-10-16 00:21:02 +00:00
|
|
|
fi
|
2022-02-14 23:28:12 +00:00
|
|
|
|
2022-11-03 18:29:02 +00:00
|
|
|
echo "::debug::Verifying the current commit SHA: $CURRENT_SHA"
|
|
|
|
git rev-parse --quiet --verify "$CURRENT_SHA^{commit}" 1>/dev/null 2>&1 && exit_status=$? || exit_status=$?
|
2022-02-14 23:28:12 +00:00
|
|
|
|
2022-11-03 18:29:02 +00:00
|
|
|
if [[ $exit_status -ne 0 ]]; then
|
|
|
|
echo "::error::Unable to locate the current sha: $CURRENT_SHA"
|
|
|
|
echo "::error::Please verify that current sha is valid, and increase the fetch_depth to a number higher than $INPUT_FETCH_DEPTH."
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "::debug::Current SHA: $CURRENT_SHA"
|
|
|
|
fi
|
2022-07-18 20:34:41 +00:00
|
|
|
|
2022-02-14 23:28:12 +00:00
|
|
|
if [[ -z $INPUT_BASE_SHA ]]; then
|
2022-10-14 18:59:47 +00:00
|
|
|
if [[ -n "$INPUT_SINCE" ]]; then
|
2022-10-15 22:01:59 +00:00
|
|
|
echo "::debug::Getting base SHA for '$INPUT_SINCE'..."
|
2022-10-15 23:25:37 +00:00
|
|
|
PREVIOUS_SHA=$(git log --format="%H" --date=local --since="$INPUT_SINCE" | tail -1) && exit_status=$? || exit_status=$?
|
2022-10-15 22:26:42 +00:00
|
|
|
|
2022-10-14 18:59:47 +00:00
|
|
|
if [[ -z "$PREVIOUS_SHA" ]]; then
|
|
|
|
echo "::error::Unable to locate a previous commit for the specified date: $INPUT_SINCE"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
2022-11-07 02:50:53 +00:00
|
|
|
if [[ "$INPUT_SINCE_LAST_REMOTE_COMMIT" == "true" ]]; then
|
|
|
|
PREVIOUS_SHA=""
|
|
|
|
|
2022-11-01 08:20:59 +00:00
|
|
|
if [[ "$GITHUB_EVENT_FORCED" == "false" || -z "$GITHUB_EVENT_FORCED" ]]; then
|
|
|
|
PREVIOUS_SHA=$GITHUB_EVENT_BEFORE
|
|
|
|
fi
|
2022-11-07 02:50:53 +00:00
|
|
|
else
|
|
|
|
PREVIOUS_SHA=$(git rev-list -n 1 "$TARGET_BRANCH" 2>&1) && exit_status=$? || exit_status=$?
|
|
|
|
|
|
|
|
if [[ -z "$PREVIOUS_SHA" ]]; then
|
|
|
|
if [[ "$GITHUB_EVENT_FORCED" == "false" || -z "$GITHUB_EVENT_FORCED" ]]; then
|
|
|
|
PREVIOUS_SHA=$GITHUB_EVENT_BEFORE
|
|
|
|
fi
|
|
|
|
fi
|
2022-10-14 18:59:47 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -z "$PREVIOUS_SHA" || "$PREVIOUS_SHA" == "0000000000000000000000000000000000000000" ]]; then
|
2022-10-31 03:52:09 +00:00
|
|
|
PREVIOUS_SHA=$(git rev-parse "$(git branch -r --sort=-committerdate | head -1 | xargs)")
|
2022-10-14 18:59:47 +00:00
|
|
|
fi
|
2022-09-25 02:52:05 +00:00
|
|
|
|
|
|
|
if [[ "$PREVIOUS_SHA" == "$CURRENT_SHA" ]]; then
|
2022-10-31 02:38:35 +00:00
|
|
|
if ! git rev-parse "$PREVIOUS_SHA^1" &>/dev/null; then
|
2022-10-14 18:59:47 +00:00
|
|
|
INITIAL_COMMIT="true"
|
2022-10-30 23:33:27 +00:00
|
|
|
PREVIOUS_SHA=$(git rev-parse "$CURRENT_SHA")
|
|
|
|
echo "::warning::Initial commit detected no previous commit found."
|
2022-10-31 03:08:40 +00:00
|
|
|
else
|
|
|
|
PREVIOUS_SHA=$(git rev-parse "$PREVIOUS_SHA^1")
|
2022-10-30 23:33:27 +00:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [[ -z "$PREVIOUS_SHA" ]]; then
|
2022-11-24 04:46:23 +00:00
|
|
|
echo "::error::Unable to locate a previous commit."
|
2022-10-30 23:33:27 +00:00
|
|
|
exit 1
|
2022-10-14 18:59:47 +00:00
|
|
|
fi
|
2022-09-25 02:52:05 +00:00
|
|
|
fi
|
2022-02-26 10:09:14 +00:00
|
|
|
fi
|
2022-02-14 23:28:12 +00:00
|
|
|
else
|
2022-12-05 07:12:48 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-12-13 20:51:00 +00:00
|
|
|
git fetch $EXTRA_ARGS -u --progress --deepen="$INPUT_FETCH_DEPTH" origin "$CURRENT_BRANCH" 1>/dev/null 2>&1
|
2022-12-10 06:49:27 +00:00
|
|
|
PREVIOUS_SHA=$INPUT_BASE_SHA
|
2022-02-14 23:28:12 +00:00
|
|
|
fi
|
|
|
|
|
2022-09-25 01:08:58 +00:00
|
|
|
echo "::debug::Target branch $TARGET_BRANCH..."
|
|
|
|
echo "::debug::Current branch $CURRENT_BRANCH..."
|
|
|
|
|
2022-09-03 00:40:51 +00:00
|
|
|
echo "::debug::Verifying the previous commit SHA: $PREVIOUS_SHA"
|
2022-09-03 00:23:52 +00:00
|
|
|
git rev-parse --quiet --verify "$PREVIOUS_SHA^{commit}" 1>/dev/null 2>&1 && exit_status=$? || exit_status=$?
|
2022-02-14 23:28:12 +00:00
|
|
|
|
|
|
|
if [[ $exit_status -ne 0 ]]; then
|
2022-06-24 04:17:41 +00:00
|
|
|
echo "::error::Unable to locate the previous sha: $PREVIOUS_SHA"
|
2022-11-03 17:33:33 +00:00
|
|
|
echo "::error::Please verify that the previous sha commit is valid, and increase the fetch_depth to a number higher than $INPUT_FETCH_DEPTH."
|
2022-02-14 23:28:12 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
2022-09-25 01:59:18 +00:00
|
|
|
echo "Running on a pull request event..."
|
2022-02-14 23:28:12 +00:00
|
|
|
TARGET_BRANCH=$GITHUB_BASE_REF
|
|
|
|
CURRENT_BRANCH=$GITHUB_HEAD_REF
|
2022-11-17 19:25:27 +00:00
|
|
|
|
|
|
|
if [[ "$INPUT_SINCE_LAST_REMOTE_COMMIT" == "true" ]]; then
|
|
|
|
TARGET_BRANCH=$CURRENT_BRANCH
|
|
|
|
fi
|
2022-02-14 23:28:12 +00:00
|
|
|
|
2022-11-03 18:29:02 +00:00
|
|
|
echo "Fetching remote refs..."
|
2022-11-07 02:50:53 +00:00
|
|
|
|
|
|
|
if [[ "$INPUT_SINCE_LAST_REMOTE_COMMIT" == "false" ]]; then
|
2022-11-07 06:28:15 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-12-13 19:20:37 +00:00
|
|
|
git fetch -u --progress $EXTRA_ARGS --depth="$INPUT_FETCH_DEPTH" origin +refs/heads/"$TARGET_BRANCH":refs/remotes/origin/"$TARGET_BRANCH" 1>/dev/null 2>&1
|
|
|
|
git branch --track "$TARGET_BRANCH" origin/"$TARGET_BRANCH" 1>/dev/null 2>&1 || true
|
2022-12-13 20:24:35 +00:00
|
|
|
# shellcheck disable=SC2086
|
|
|
|
git fetch $EXTRA_ARGS -u --progress --depth=$(( GITHUB_EVENT_PULL_REQUEST_COMMITS + 1 )) origin +"$GITHUB_REF":refs/remotes/origin/"$CURRENT_BRANCH" 1>/dev/null 2>&1
|
|
|
|
|
2022-12-14 01:39:58 +00:00
|
|
|
COMMON_ANCESTOR=$(git rev-list --first-parent --max-parents=0 --max-count=1 origin/"$CURRENT_BRANCH") && exit_status=$? || exit_status=$?
|
2022-12-13 20:24:35 +00:00
|
|
|
|
|
|
|
if [[ -z "$COMMON_ANCESTOR" ]]; then
|
2022-12-14 01:39:58 +00:00
|
|
|
echo "::debug::Unable to locate a common ancestor for the current branch: $CURRENT_BRANCH"
|
2022-12-13 20:24:35 +00:00
|
|
|
else
|
|
|
|
echo "::debug::Common ancestor: $COMMON_ANCESTOR"
|
|
|
|
|
2022-12-14 01:39:58 +00:00
|
|
|
DATE=$(git log --date=iso8601 --format=%cd "${COMMON_ANCESTOR}")
|
2022-12-13 20:24:35 +00:00
|
|
|
|
2022-12-14 01:39:58 +00:00
|
|
|
if [[ -z "$DATE" ]]; then
|
|
|
|
echo "::error::Unable to locate a date for the common ancestor: $COMMON_ANCESTOR"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
git fetch $EXTRA_ARGS --shallow-since="${DATE}" origin +refs/heads/"$TARGET_BRANCH":refs/remotes/origin/"$TARGET_BRANCH" 1>/dev/null 2>&1
|
|
|
|
echo "::debug::Date: $DATE"
|
|
|
|
fi
|
2022-12-13 20:24:35 +00:00
|
|
|
fi
|
2022-11-18 13:17:59 +00:00
|
|
|
else
|
2022-11-18 13:28:49 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-12-13 19:20:37 +00:00
|
|
|
git fetch $EXTRA_ARGS -u --progress --depth="$INPUT_FETCH_DEPTH" origin +"$GITHUB_REF":refs/remotes/origin/"$CURRENT_BRANCH" 1>/dev/null 2>&1
|
2022-11-07 02:50:53 +00:00
|
|
|
fi
|
2022-11-01 08:20:59 +00:00
|
|
|
|
2022-11-03 18:29:02 +00:00
|
|
|
echo "::debug::Getting HEAD SHA..."
|
|
|
|
if [[ -n "$INPUT_UNTIL" ]]; then
|
|
|
|
echo "::debug::Getting HEAD SHA for '$INPUT_UNTIL'..."
|
|
|
|
CURRENT_SHA=$(git log -1 --format="%H" --date=local --until="$INPUT_UNTIL") && exit_status=$? || exit_status=$?
|
|
|
|
|
|
|
|
if [[ $exit_status -ne 0 ]]; then
|
|
|
|
echo "::error::Invalid until date: $INPUT_UNTIL"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [[ -z $INPUT_SHA ]]; then
|
2022-12-13 21:25:47 +00:00
|
|
|
CURRENT_SHA=$(git rev-list -n 1 HEAD 2>&1) && exit_status=$? || exit_status=$?
|
2022-11-03 18:29:02 +00:00
|
|
|
else
|
|
|
|
CURRENT_SHA=$INPUT_SHA; exit_status=$?
|
2022-12-13 21:13:22 +00:00
|
|
|
|
|
|
|
if [[ "$CURRENT_SHA" == "$GITHUB_EVENT_PULL_REQUEST_HEAD_SHA" ]]; then
|
2022-12-13 21:25:47 +00:00
|
|
|
CURRENT_SHA=$(git rev-list -n 1 HEAD 2>&1) && exit_status=$? || exit_status=$?
|
2022-12-13 21:13:22 +00:00
|
|
|
fi
|
2022-11-03 18:29:02 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "::debug::Verifying the current commit SHA: $CURRENT_SHA"
|
|
|
|
git rev-parse --quiet --verify "$CURRENT_SHA^{commit}" 1>/dev/null 2>&1 && exit_status=$? || exit_status=$?
|
|
|
|
|
|
|
|
if [[ $exit_status -ne 0 ]]; then
|
|
|
|
echo "::error::Unable to locate the current sha: $CURRENT_SHA"
|
|
|
|
echo "::error::Please verify that current sha is valid, and increase the fetch_depth to a number higher than $INPUT_FETCH_DEPTH."
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "::debug::Current SHA: $CURRENT_SHA"
|
2022-12-10 07:05:52 +00:00
|
|
|
fi
|
2022-11-03 18:29:02 +00:00
|
|
|
|
2022-11-03 17:47:33 +00:00
|
|
|
if [[ -z $INPUT_BASE_SHA ]]; then
|
2022-11-07 02:50:53 +00:00
|
|
|
if [[ "$INPUT_SINCE_LAST_REMOTE_COMMIT" == "true" ]]; then
|
2022-11-08 18:06:06 +00:00
|
|
|
PREVIOUS_SHA=$GITHUB_EVENT_BEFORE
|
2022-11-07 02:50:53 +00:00
|
|
|
else
|
2022-12-10 06:58:40 +00:00
|
|
|
PREVIOUS_SHA=$GITHUB_EVENT_PULL_REQUEST_BASE_SHA
|
2022-12-12 18:14:49 +00:00
|
|
|
|
|
|
|
if ! git diff --name-only --ignore-submodules=all "$PREVIOUS_SHA$DIFF$CURRENT_SHA" 1>/dev/null 2>&1; then
|
|
|
|
PREVIOUS_SHA=$(git merge-base "$PREVIOUS_SHA" "$CURRENT_SHA" 2>&1) && exit_status=$? || exit_status=$?
|
|
|
|
fi
|
2022-11-07 02:50:53 +00:00
|
|
|
fi
|
|
|
|
|
2022-11-07 15:04:54 +00:00
|
|
|
if [[ -z "$PREVIOUS_SHA" || "$PREVIOUS_SHA" == "$CURRENT_SHA" ]]; then
|
2022-11-01 08:20:59 +00:00
|
|
|
PREVIOUS_SHA=$GITHUB_EVENT_PULL_REQUEST_BASE_SHA && exit_status=$? || exit_status=$?
|
|
|
|
fi
|
2022-11-07 15:04:54 +00:00
|
|
|
|
2022-12-05 06:54:27 +00:00
|
|
|
echo "::debug::Previous SHA: $PREVIOUS_SHA"
|
|
|
|
else
|
|
|
|
PREVIOUS_SHA=$INPUT_BASE_SHA && exit_status=$? || exit_status=$?
|
2022-11-15 16:31:41 +00:00
|
|
|
fi
|
2022-12-14 15:04:31 +00:00
|
|
|
|
|
|
|
if [[ "$INPUT_SINCE_LAST_REMOTE_COMMIT" == "false" ]]; then
|
|
|
|
if [[ -f .git/shallow ]]; then
|
|
|
|
depth=$INPUT_FETCH_DEPTH
|
|
|
|
max_depth=$INPUT_MAX_FETCH_DEPTH
|
|
|
|
|
2022-12-15 20:08:16 +00:00
|
|
|
for ((i=0; i<max_depth; i+=depth * 2)); do
|
2022-12-14 15:04:31 +00:00
|
|
|
if git diff --name-only --ignore-submodules=all "$PREVIOUS_SHA$DIFF$CURRENT_SHA" 1>/dev/null 2>&1; then
|
|
|
|
break
|
2022-12-15 19:20:18 +00:00
|
|
|
else
|
2022-12-15 19:29:39 +00:00
|
|
|
NEW_PREVIOUS_SHA=$(git merge-base --fork-point "$PREVIOUS_SHA" "$CURRENT_SHA" 2>&1) && exit_status=$? || exit_status=$?
|
|
|
|
|
|
|
|
if [[ -n "$NEW_PREVIOUS_SHA" ]]; then
|
|
|
|
PREVIOUS_SHA=$NEW_PREVIOUS_SHA
|
|
|
|
fi
|
2022-12-14 15:04:31 +00:00
|
|
|
fi
|
2022-12-15 19:20:18 +00:00
|
|
|
|
2022-12-14 15:04:31 +00:00
|
|
|
echo "Fetching $i commits..."
|
|
|
|
|
|
|
|
# shellcheck disable=SC2086
|
2022-12-14 15:32:25 +00:00
|
|
|
git fetch $EXTRA_ARGS -u --progress --deepen="$i" origin $TARGET_BRANCH $CURRENT_SHA 1>/dev/null 2>&1
|
2022-12-14 15:04:31 +00:00
|
|
|
done
|
|
|
|
|
2022-12-15 19:20:18 +00:00
|
|
|
if ((i >= max_depth)); then
|
2022-12-14 15:04:31 +00:00
|
|
|
echo "::error::Unable to locate a common ancestor between $TARGET_BRANCH and $CURRENT_BRANCH with: $PREVIOUS_SHA$DIFF$CURRENT_SHA"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "::debug::Not a shallow clone, skipping merge-base check."
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2022-11-15 16:31:41 +00:00
|
|
|
|
2022-12-05 06:54:27 +00:00
|
|
|
echo "::debug::Target branch: $TARGET_BRANCH"
|
|
|
|
echo "::debug::Current branch: $CURRENT_BRANCH"
|
|
|
|
|
2022-09-03 00:40:51 +00:00
|
|
|
echo "::debug::Verifying the previous commit SHA: $PREVIOUS_SHA"
|
2022-09-03 00:23:52 +00:00
|
|
|
git rev-parse --quiet --verify "$PREVIOUS_SHA^{commit}" 1>/dev/null 2>&1 && exit_status=$? || exit_status=$?
|
2022-02-14 23:28:12 +00:00
|
|
|
|
|
|
|
if [[ $exit_status -ne 0 ]]; then
|
2022-06-24 04:17:41 +00:00
|
|
|
echo "::error::Unable to locate the previous sha: $PREVIOUS_SHA"
|
2022-11-03 17:33:33 +00:00
|
|
|
echo "::error::Please verify that the previous sha is valid, and increase the fetch_depth to a number higher than $INPUT_FETCH_DEPTH."
|
2022-02-14 23:28:12 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2022-11-03 12:23:50 +00:00
|
|
|
if [[ "$PREVIOUS_SHA" == "$CURRENT_SHA" && "$INITIAL_COMMIT" == "false" ]]; then
|
2022-11-03 12:50:01 +00:00
|
|
|
echo "::error::Similar commit hashes detected: previous sha: $PREVIOUS_SHA is equivalent to the current sha: $CURRENT_SHA."
|
2022-11-03 17:33:33 +00:00
|
|
|
echo "::error::Please verify that both commits are valid, and increase the fetch_depth to a number higher than $INPUT_FETCH_DEPTH."
|
2022-07-18 20:34:41 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-10-14 18:59:47 +00:00
|
|
|
if [[ -z "$GITHUB_OUTPUT" ]]; then
|
|
|
|
echo "::set-output name=target_branch::$TARGET_BRANCH"
|
|
|
|
echo "::set-output name=current_branch::$CURRENT_BRANCH"
|
|
|
|
echo "::set-output name=previous_sha::$PREVIOUS_SHA"
|
|
|
|
echo "::set-output name=current_sha::$CURRENT_SHA"
|
|
|
|
else
|
|
|
|
cat <<EOF >> "$GITHUB_OUTPUT"
|
2022-10-12 18:35:11 +00:00
|
|
|
target_branch=$TARGET_BRANCH
|
|
|
|
current_branch=$CURRENT_BRANCH
|
|
|
|
previous_sha=$PREVIOUS_SHA
|
|
|
|
current_sha=$CURRENT_SHA
|
|
|
|
EOF
|
2022-10-14 18:59:47 +00:00
|
|
|
fi
|
2022-02-14 23:28:12 +00:00
|
|
|
|
|
|
|
echo "::endgroup::"
|