misc: add new type for commit message
[vpp.git] / extras / scripts / check_commit_msg.sh
index 0baa2b5..4c24898 100755 (executable)
@@ -1,8 +1,9 @@
 #/bin/env bash
 
 KNOWN_FEATURES=$(cat MAINTAINERS | sed -ne 's/^I:[[:space:]]*//p')
-FEATURES=$(git show -s --format=%s --no-color | sed -e 's/\([a-z0-9 -]*\):.*/\1/')
-KNOWN_TYPES="feature fix refactor style docs test make"
+FEATURES=$(git show -s --format=%s --no-color \
+    | sed -ne 's/^\([a-z0-9 -]*\):.*$/\1/p')
+KNOWN_TYPES="feature fix refactor improvement style docs test make"
 TYPE=$(git show -s --format=%b --no-color | sed -ne 's/^Type:[[:space:]]*//p')
 ERR="=============================== ERROR ==============================="
 
@@ -47,3 +48,6 @@ if [ ${is_known} = "false" ] ; then
   echo $ERR
   exit 1
 fi
+echo "*******************************************************************"
+echo "* VPP Commit Message Checkstyle Successfully Completed"
+echo "*******************************************************************"