mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-14 20:17:46 +02:00
ci: update lint-commit-msg.sh script
This commit is contained in:
parent
33d01b8d4f
commit
7b8494d2b3
1 changed files with 8 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue