Merge "Check for stacks delete in progress"
[releng/builder.git] / jjb / include-raw-verify-gpg-signatures.sh
1 #!/bin/bash
2
3 if git log --show-signature -1 | egrep -q 'gpg: Signature made.*key ID'; then
4    echo "git commit is gpg signed"
5 else
6    echo "WARNING: gpg signature missing for the commit"
7 fi
8
9 # Don't fail the job for unsigned commits
10 exit 0