revert removing since-last-remote-commit input

This commit is contained in:
Tonye Jack
2022-09-24 18:59:22 -06:00
parent b6b72a44c8
commit 2c4c729f2a
2 changed files with 6 additions and 1 deletions

View File

@@ -21,7 +21,7 @@ if [[ -n "$INPUT_SINCE" ]]; then
echo "::set-output name=base_sha::$BASE_SHA"
elif [[ -n "$INPUT_BASE_SHA" ]]; then
echo "::set-output name=base_sha::$INPUT_BASE_SHA"
else
elif [[ "$INPUT_SINCE_LAST_REMOTE_COMMIT" == "true" ]]; then
LAST_REMOTE_COMMIT="$GITHUB_EVENT_BEFORE"
if [[ -z "$LAST_REMOTE_COMMIT" || "$LAST_REMOTE_COMMIT" == "0000000000000000000000000000000000000000" ]]; then