mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-13 19:18:56 +00:00
7 lines
227 B
Plaintext
7 lines
227 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if ! grep -qE "^(build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert)(\((common|core|crypto|legacy|python|storage|tools|vendor)\))?: " "$1" ; then
|
||
|
echo "Conventional Commits validation failed"
|
||
|
exit 1
|
||
|
fi
|