1
mirror of https://gitlab.com/commento/commento.git synced 2025-06-29 22:56:37 -04:00

.gitlab-ci.yml: check for dco

This commit is contained in:
Adhityaa Chandrasekar
2018-08-13 00:10:33 +05:30
parent 999ba0c419
commit e95e2f9e7a
2 changed files with 23 additions and 0 deletions

12
scripts/check-dco Normal file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env bash
emails=$(git log master..HEAD --pretty=format:'%ae' | sort | uniq)
for email in $emails; do
printf "checking %s\n" "$email"
if ! curl -s 'https://dco.commento.io/api/has-signed' -d "email=$email" -X POST \
| jq '.hasSigned' \
| grep -q true; then
printf "%s has not signed the DCO: https://dco.commento.io\n" "$email"
exit 1
fi
done