diff --git a/.github/workflows/check_authors.sh b/.github/workflows/check_authors.sh index eeb97cdf1..f8eadc13a 100644 --- a/.github/workflows/check_authors.sh +++ b/.github/workflows/check_authors.sh @@ -1,5 +1,9 @@ #!/bin/bash +git log $1 --pretty=format:"%ae" | sort | uniq | head -n 10 + +git log origin/main..origin/author-action --pretty=format:"%ae" | sort | uniq | head -n 10 + EMAILS=$(git log $1 --pretty=format:"%ae" | sort | uniq | head -n 10) echo "Emails: $EMAILS"