mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-04 14:41:08 +00:00
7 lines
227 B
Bash
Executable File
7 lines
227 B
Bash
Executable File
#!/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
|