Merged in chore/block-commits-on-master (pull request #3264)
chore: block commits and pushes directly on master * chore: block commits and pushes directly on master Approved-by: Linus Flood Approved-by: Matilda Landström
This commit is contained in:
@@ -1 +1,8 @@
|
|||||||
|
branch="$(git rev-parse --abbrev-ref HEAD)"
|
||||||
|
|
||||||
|
if [ "$branch" = "master" ] || [ "$branch" = "main" ]; then
|
||||||
|
echo "❌ You can't commit directly to $branch"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
yarn dlx lint-staged
|
yarn dlx lint-staged
|
||||||
|
|||||||
6
.husky/pre-push
Normal file
6
.husky/pre-push
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
branch="$(git rev-parse --abbrev-ref HEAD)"
|
||||||
|
|
||||||
|
if [ "$branch" = "master" ] || [ "$branch" = "main" ]; then
|
||||||
|
echo "❌ You can't push directly to $branch"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user