We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f710b00 commit cdb45d6Copy full SHA for cdb45d6
.github/workflows/pr-supervisor.yaml
@@ -40,7 +40,8 @@ jobs:
40
41
# We want to watch for pending checks beside this check
42
checks=$(gh pr checks $PR_NUMBER --json name,state --jq '[ .[] | select(.name != "yamato-supervisor") ]')
43
- echo gh pr checks $PR_NUMBER --json name,state
+ debugChecks=$(gh pr checks $PR_NUMBER --json name,state)
44
+ echo "debugChecks" | jq .
45
46
pending=$(echo "$checks" | jq '[.[] | select(.state == "IN_PROGRESS")] | length')
47
skipping=$(echo "$checks" | jq '[.[] | select(.state == "SKIPPED")] | length')
0 commit comments