MAPG-129 add prepare-commit-msg hook template
This commit is contained in:
parent
49b6f28a9d
commit
95508ad284
15
scripts/gitHooks/prepare-commit-msg
Executable file
15
scripts/gitHooks/prepare-commit-msg
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
BRANCH_NAME=$(git symbolic-ref --short HEAD)
|
||||
BRANCH_PATTERN="^(bugfix|feature|hotfix)\/([A-Z]+-[0-9]+).*"
|
||||
|
||||
if [[ "${BRANCH_NAME}" =~ $BRANCH_PATTERN ]]; then
|
||||
TICKET_ID=$(echo $BRANCH_NAME | sed -E "s@$BRANCH_PATTERN@\\2@")
|
||||
|
||||
COMMIT_MESSAGE=$(head -n 1 $1)
|
||||
COMMIT_MESSAGE_REGEX="^$TICKET_ID .*"
|
||||
|
||||
if [[ ! "${COMMIT_MESSAGE}" =~ $COMMIT_MESSAGE_REGEX ]]; then
|
||||
sed -i.bak -e "1s/^/$TICKET_ID /" $1
|
||||
fi
|
||||
fi
|
Loading…
Reference in New Issue
Block a user