Files
monie-landing/.husky/pre-push
Denis Krylov ec3f72113a
Some checks failed
Deploy monie-landing (kaniko) / build-and-deploy (push) Failing after 13s
chore: initialize project
2026-04-05 17:16:55 +03:00

20 lines
479 B
Bash
Executable File

#!/usr/bin/env sh
# branch="$(git rev-parse --abbrev-ref HEAD)"
# case "$branch" in
# main|develop)
# echo "Direct pushes to $branch are not allowed."
# echo "Please create a feature/... or bugfix/... branch and open a PR/MR."
# exit 1
# ;;
# feature/*|bugfix/*|hotfix/*|chore/*)
# exit 0
# ;;
# *)
# echo "Invalid branch name: $branch"
# echo "Allowed branch prefixes: feature/*, bugfix/*, hotfix/*, chore/*"
# exit 1
# ;;
# esac