We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1beba2d commit 331d3a7Copy full SHA for 331d3a7
.github/actions/vercel-deploy-check.sh
@@ -0,0 +1,9 @@
1
+#!/bin/sh
2
+
3
+if [ "$VERCEL_GIT_REPO_OWNER" != "cube-js" ]; then
4
+ echo "Skipping deploy for PR from a fork."
5
+ exit 0
6
+fi
7
8
+# In other case return the usual git diff for a root folder
9
+git diff HEAD^ HEAD --quiet ./
0 commit comments