ci: update lint-commit-msg.sh script

This commit is contained in:
Yassine Doghri 2021-06-23 14:53:31 +00:00
parent 33d01b8d4f
commit 7b8494d2b3
No known key found for this signature in database
GPG Key ID: 3E7F89498B960C9F
1 changed files with 8 additions and 2 deletions

View File

@ -2,11 +2,17 @@
# see https://github.com/conventional-changelog/commitlint/issues/885
if [ "${CI_COMMIT_BEFORE_SHA}" = "0000000000000000000000000000000000000000" ]
if [ "${CI_COMMIT_BEFORE_SHA}" = "0000000000000000000000000000000000000000" ];
then
echo "commitlint from HEAD^"
npx commitlint --from=HEAD^
else
echo "commitlint from ${CI_COMMIT_BEFORE_SHA}"
npx commitlint --from="${CI_COMMIT_BEFORE_SHA}"
br=`git branch -r --contains ${CI_COMMIT_BEFORE_SHA}`
if [ ! -n $br ];
then
npx commitlint --from=HEAD^
else
npx commitlint --from="${CI_COMMIT_BEFORE_SHA}"
fi
fi