You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/ci/check_fixup.sh

13 lines
384 B

#!/usr/bin/env bash
git fetch origin master:master # on CIs it is common to fetch only the current branch
messages=$(git log --format=%s master..) # commit messages between this branch and master
if [[ $messages =~ "fixup!" ]]; then
echo 'Failure: Some commit message contains "fixup!" string.'
exit 1
else
echo 'Success: No commit messages containing "fixup!" string.'
fi