Skip to content

Commit

Permalink
Reduce false-positives and false-negatives in PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
ibnesayeed committed Jul 8, 2020
1 parent 2982a9c commit 26b8384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ commits=$(git log $RANGE --no-merges --oneline | awk '{print "- "$0}')
commits=$(escapify "$commits")
echo "::set-output name=commits::$commits"

prs=$(git log --format="%s %b" --merges $RANGE | cut -d' ' -f4,7- | awk '{print "- "$0}')
prs=$(git log --format="%s %b" --merges $RANGE | grep "Merge pull request #" | cut -d' ' -f4,6- | awk '{print "- "$0}')
prs=$(escapify "$prs")
echo "::set-output name=prs::$prs"

Expand Down

0 comments on commit 26b8384

Please sign in to comment.