Forgot elif.

(cherry picked from commit e401fa14c4)
This commit is contained in:
Felix Fontein 2026-06-05 10:48:32 +02:00
parent 1ccb34d958
commit 1b115973f3

View File

@ -60,7 +60,7 @@ if [ -n "${COMPLETE:-}" ]; then
elif [[ "${COMMIT_MESSAGE}" =~ ci_complete ]]; then elif [[ "${COMMIT_MESSAGE}" =~ ci_complete ]]; then
# disable change detection triggered by having 'ci_complete' in the latest commit message # disable change detection triggered by having 'ci_complete' in the latest commit message
export ANTSIBULL_CHANGE_DETECTION="" export ANTSIBULL_CHANGE_DETECTION=""
if [ "${IS_PULL_REQUEST:-}" == "true" ]; then elif [ "${IS_PULL_REQUEST:-}" == "true" ]; then
# enable change detection for PRs (default behavior) # enable change detection for PRs (default behavior)
export ANTSIBULL_CHANGE_DETECTION="true" export ANTSIBULL_CHANGE_DETECTION="true"
export ANTSIBULL_BASE_BRANCH="${SYSTEM_PULLREQUEST_TARGETBRANCH}" export ANTSIBULL_BASE_BRANCH="${SYSTEM_PULLREQUEST_TARGETBRANCH}"