1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00

ci: check if commit message contains fixup on travis

This commit is contained in:
Tomas Susanka 2020-03-06 18:14:17 +00:00
parent e3b674a42e
commit 30a267c83d
2 changed files with 13 additions and 0 deletions

View File

@ -33,6 +33,7 @@ script:
- pipenv run make style_check
- pipenv run make defs_check
- pipenv run make gen_check
- ci/check_fixup.sh
notifications:
webhooks:

12
ci/check_fixup.sh Executable file
View File

@ -0,0 +1,12 @@
#!/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