From ff6bab60304c6a55de0aa3f8d342f0aefbb2ab8c Mon Sep 17 00:00:00 2001 From: Conrad Date: Thu, 8 May 2025 13:28:44 +0200 Subject: [PATCH] fix: fixed a bug with INPUT_ONLY_CHANGED_PR --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index d23f779..7c8f4bf 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -89,7 +89,7 @@ fi # If running under only_changed, reset every modified file that wasn't also modified in the last commit # This allows only_changed and dry to work together, and simplified the non-dry logic below -if [ $INPUT_ONLY_CHANGED = true ] || [$INPUT_ONLY_CHANGED_PR = true ] ; then +if [ $INPUT_ONLY_CHANGED = true ] || [ $INPUT_ONLY_CHANGED_PR = true ] ; then BASE_BRANCH=origin/$GITHUB_BASE_REF if $INPUT_ONLY_CHANGED; then BASE_BRANCH=HEAD~1