Skip to content

Commit

Permalink
Update diff-sha.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Dec 16, 2022
1 parent aabcbcc commit bdfc50c
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions diff-sha.sh
Expand Up @@ -232,7 +232,7 @@ else
fi

if [[ -z "$PREVIOUS_SHA" || "$PREVIOUS_SHA" == "$CURRENT_SHA" ]]; then
PREVIOUS_SHA=$GITHUB_EVENT_PULL_REQUEST_BASE_SHA && exit_status=$? || exit_status=$?
PREVIOUS_SHA=$(git merge-base --fork-point "$TARGET_BRANCH" "$CURRENT_SHA") && exit_status=$? || exit_status=$?
fi

echo "::debug::Previous SHA: $PREVIOUS_SHA"
Expand All @@ -248,12 +248,6 @@ else
for ((i=0; i<max_depth; i+=depth * 2)); do
if git diff --name-only --ignore-submodules=all "$PREVIOUS_SHA$DIFF$CURRENT_SHA" 1>/dev/null 2>&1; then
break
else
NEW_PREVIOUS_SHA=$(git merge-base --fork-point "$TARGET_BRANCH" "$CURRENT_SHA") && exit_status=$? || exit_status=$?

if [[ -n "$NEW_PREVIOUS_SHA" ]]; then
PREVIOUS_SHA=$NEW_PREVIOUS_SHA
fi
fi

echo "Fetching $i commits..."
Expand Down

0 comments on commit bdfc50c

Please sign in to comment.