Browse Source

PASS1-125: Add Git commit-msg hook to check for Linear ID (#24)

* PASS1-125: Add Git commit-msg hook to check for Linear ID

* Update .githooks/commit-msg

Co-authored-by: Jean Pierre Dudey <jeandudey@hotmail.com>

Co-authored-by: Jean Pierre Dudey <jeandudey@hotmail.com>
PASS1-133
Ken Carpenter 3 years ago
parent
commit
cb5a172780
  1. 12
      .githooks/commit-msg

12
.githooks/commit-msg

@ -0,0 +1,12 @@
#!/usr/bin/env bash
TEAM_PREFIX='PASS1'
commit_regex="^($TEAM_PREFIX-[0-9]+:\ )"
if ! `grep -iqE "$commit_regex" "$1"`; then
echo "=========================================================================================" >&2
echo "Aborting commit. Your commit message must start with a Linear issue ID, colon then space." >&2
echo "Example: '$TEAM_PREFIX-123: ' (To commit anyway, use the --no-verify option)" >&2
echo "=========================================================================================" >&2
exit 1
fi
Loading…
Cancel
Save