mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
2eea5d4cb4
skip building preview of docs for anything branch that doesn't start with `__docs__`. will eventually update to look at code diff directories but patching for now
15 lines
254 B
Bash
Executable File
15 lines
254 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "VERCEL_GIT_COMMIT_REF: $VERCEL_GIT_COMMIT_REF"
|
|
|
|
if [[ $VERCEL_GIT_COMMIT_REF = __docs__* ]] ; then
|
|
# Proceed with the build
|
|
echo "✅ - Build can proceed"
|
|
exit 1;
|
|
|
|
else
|
|
# Don't build
|
|
echo "🛑 - Build cancelled"
|
|
exit 0;
|
|
fi
|