mondarth-campaign/.husky/prepare-commit-msg
Ulenar of Mondarth 6803c8336b
Some checks failed
Build and Deploy Docs / build (push) Failing after 1m41s
Bump version / Bump version and create changelog with commitizen (push) Failing after 7s
chore: initial commit
2025-07-14 18:00:35 +00:00

14 lines
271 B
Bash
Executable File

#!/bin/env bash
if [ "$2" = "commit" ]; then
echo "Skipping prepare-commit-msg hook due to amend."
exit 0
fi
if [ -n "$GIT_SEQUENCE_EDITOR" ]; then
echo "Skipping prepare-commit-msg hook due to rebase."
exit 0
fi
exec < /dev/tty && pnpm exec cz --hook || true