Skip to content

Commit

Permalink
X
Browse files Browse the repository at this point in the history
  • Loading branch information
Twixes committed May 23, 2024
1 parent 95cc8be commit 1989825
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

protected_branch='hogql-insights-ci'
current_branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,')

if [ $protected_branch = $current_branch ]
then
read -p "You're about to push to $protected_branch, is this what you intended? [yN] " -n 1 -r < /dev/tty
echo
if echo $REPLY | grep -E '^[Yy]$' > /dev/null
then
exit 0 # push will execute
fi
exit 1 # push will not execute
else
exit 0 # push will execute
fi

0 comments on commit 1989825

Please sign in to comment.