On Tue, 2 Apr 2024 at 15:30, Laurent Vivier <[email protected]> wrote: > To post PR I generally use git-publish and I have a hook that checks that. > > $ cat .git/hooks/pre-publish-send-email > !/bin/bash > > NAME=$(git config --get user.name) > EMAIL=$(git config --get user.email) > > for PATCH in $1/*.patch; do > if [ $(basename $PATCH) = "0000-cover-letter.patch" ]; then > continue > fi > if ! grep -q "^Signed-off-by: $NAME <$EMAIL>" $PATCH; then > echo "Error: Missing sender S-o-B in $PATCH" > exit 1 > fi > if grep "^From: " $PATCH | grep -q "<[email protected]>" ; then > echo "Error: Author email address is mangled by the mailing list in > $PATCH" > exit 1 > fi
You should check for qemu-.*, not just qemu-devel... thanks -- PMM
