dont show merge commits in log

This commit is contained in:
ArabCoders
2025-02-13 16:07:47 +03:00
parent 79843e72d3
commit e6f5154ae3

View File

@@ -59,7 +59,7 @@ jobs:
fi
echo "Comparing commits between: ${RANGE}"
LOG=$(git log "${RANGE}" --pretty=format:"- %h %s by %an")
LOG=$(git log "${RANGE}" --no-merges --pretty=format:"- %h %s by %an")
echo "LOG<<EOF" >> "$GITHUB_ENV"
echo "$LOG" >> "$GITHUB_ENV"