chore(CI): Revert 40989e54d8

Workaround was only due to a travis limitation that's no longer present on GH actions.
reviewable/pr6471/r17
Anthony Bilinski 2022-02-16 08:10:48 -08:00
parent 75648d04b9
commit 17c4ad4ba7
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
1 changed files with 5 additions and 4 deletions

View File

@ -36,10 +36,11 @@ ARG="$1"
echo "" # ← formatting
grep_for_invalid() {
# we can't rely on differentiating merge and normal commits since short clones that travis does may not be able
# to tell if the oldest commit is a merge commit or not
git log --format=format:'%s' "$ARG" \
| grep -v -E '^((feat|fix|docs|style|refactor|perf|revert|test|chore)(\(.{,12}\))?:.{1,68})|(Merge .{1,70})$'
# differentiate what is allowed for commit messages and merge messages
git log --no-merges --format=format:'%s' "$ARG" \
| grep -v -E '^(feat|fix|docs|style|refactor|perf|revert|test|chore)(\(.{,12}\))?:.{1,68}$' \
|| git log --merges --format=format:'%s' "$ARG" \
| grep -v -E '^Merge .{1,70}$'
}
# Conform, /OR ELSE/.