1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-18 04:18:10 +00:00

ci: change [NO MASTER] to [RELEASE ONLY] in release check

To make it the same as in Suite.
This commit is contained in:
Tomas Susanka 2020-11-05 19:11:02 +01:00
parent 859aa23752
commit 1f90a13372

View File

@ -21,13 +21,13 @@ do
fi
fi
# 2. [NO MASTER] substring
if [[ $message =~ "[NO MASTER]" ]]; then
# 2. [RELEASE ONLY] substring
if [[ $message =~ "[RELEASE ONLY]" ]]; then
continue
fi
fail=1
echo "FAILURE! Neither 'cherry picked from..' nor '[NO MASTER]' substring found in this commit message."
echo "FAILURE! Neither 'cherry picked from..' nor '[RELEASE ONLY]' substring found in this commit message."
done
exit $fail