mirror of https://github.com/zulip/zulip.git
10 lines
446 B
Bash
Executable File
10 lines
446 B
Bash
Executable File
#!/bin/bash
|
|
AUTHOR=$(git log -1 HEAD | grep ^Author | sed 's/Author: //')
|
|
if ! $(echo "$AUTHOR" | egrep '(humbughq|zulip)\.com' >/dev/null); then
|
|
echo -e "\e[0;91m Invalid non-Zulip commit author: $AUTHOR\e[0m"
|
|
fi
|
|
COMMITTER=$(git log -1 HEAD --pretty=fuller | grep ^Commit: | sed 's/Author: //')
|
|
if ! $(echo "$COMMITTER" | egrep '(humbughq|zulip)\.com' >/dev/null); then
|
|
echo -e "\e[0;91m Invalid non-Zulip committer: $COMMITTER\e[0m"
|
|
fi
|