diff --git a/.husky/pre-push b/.husky/pre-push index 5a179e93efa..d43c508b19f 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -1,14 +1,14 @@ #!/usr/bin/env sh . "$(dirname -- "$0")/_/husky.sh" -# Maximum allowed branch name length (cloud limit) +# Maximum allowed branch name length (deployment instance name limit) MAX_LENGTH=37 # Check if the branch name length exceeds the maximum allowed length branch_name=$(git symbolic-ref --short HEAD) if [ ${#branch_name} -gt $MAX_LENGTH ]; then echo "⚠️ Warning: Branch name '$branch_name' exceeds the maximum allowed length of $MAX_LENGTH characters." - echo "⚠️ Cloud instance will not be able to deploy." + echo "⚠️ The deployment instance will not be created." fi npm run check-types