From 089bc11526ab027038048f75322bc58981767979 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Wed, 27 May 2020 14:04:45 +0200 Subject: [PATCH] bin/autoresolve: Include `mergeable` in the log if it's not `CONFLICTING` --- bin/autoresolve | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/autoresolve b/bin/autoresolve index 0c93ce60..6bbd8a73 100755 --- a/bin/autoresolve +++ b/bin/autoresolve @@ -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