summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2018-01-04 11:03:18 +0100
committerMatthias Beyer <mail@beyermatthias.de>2018-01-04 11:03:18 +0100
commit8832a17f12995c48b9c61194085202fa0abf84bb (patch)
tree388c6279bdf2e6e9f79174f5707d459f9b8b6a0c /scripts
parent0c9c9e26c1705c660baf2fb015b1dd5e14f748ce (diff)
Add script to check commit message style
Diffstat (limited to 'scripts')
-rw-r--r--scripts/hooks/commit-msg.checkstyle.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/scripts/hooks/commit-msg.checkstyle.sh b/scripts/hooks/commit-msg.checkstyle.sh
new file mode 100644
index 00000000..e1644f6d
--- /dev/null
+++ b/scripts/hooks/commit-msg.checkstyle.sh
@@ -0,0 +1,25 @@
+#!/usr/bin/env bash
+#
+# An hook script to check the commit message for style
+#
+# To enable this hook, copy this file to ".git/hooks/commit-msg" and make it
+# executable.
+
+. git-sh-setup
+
+
+#
+#
+# Check for "WIP" in commit message and add "[skip ci]" if commit message
+# contains a WIP.
+#
+#
+
+if grep -q -i -e "WIP" -e "work in progress" $1; then
+ read -p "You're about to add a WIP commit, do you want to run the CI? [y|n] " -n 1 -r < /dev/tty
+ echo
+ if echo $REPLY | grep -E '^[Nn]$' > /dev/null; then
+ echo "[skip ci]" >> $1
+ fi
+fi
+