feat(changelog): ignore merge commits

master
Marc Cornellà 5 years ago
parent e32d4b1e19
commit 0e7d7b87f3
No known key found for this signature in database
GPG Key ID: 314585E776A9C1B
  1. 5
      tools/changelog.sh

@ -114,6 +114,11 @@ function parse-commit {
fi
}
# Ignore commit if it is a merge commit
if [[ $(command git show -s --format=%p $1 | wc -w) -gt 1 ]]; then
return
fi
# Parse commit with hash $1
local hash="$1" subject body warning rhash
subject="$(command git show -s --format=%s $hash)"

Loading…
Cancel
Save