bin/autoresolve: Include `mergeable` in the log if it's not `CONFLICTING`

This commit is contained in:
Johannes Meyer 2020-05-27 14:04:45 +02:00
parent 275ddfdf4b
commit 089bc11526
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ for (( i = 0; i < $TOTAL_PULL_REQUESTS; i++ )); do
PR_MERGEABLE=$(read_json_var "$PULL_REQUESTS" .[$i].node.mergeable)
if [[ "$PR_MERGEABLE" != "CONFLICTING" ]]; then
echo "Ignoring pull request #$PR_NUMBER. No conflicts detected"
echo "Ignoring pull request #$PR_NUMBER. No conflicts detected ($PR_MERGEABLE)"
continue
fi