#!/bin/bash
export GIT_PAGER=cat PAGER=cat
R=gbharg/agents
echo "=== ALL reviews on c3893b2e (incl short) ==="
gh api "repos/$R/pulls/804/reviews" -q '.[] | select(.commit_id|startswith("c3893b2e")) | "\(.submitted_at) \(.user.login) [\(.state)] bodylen=\(.body|length)"'
echo "=== substantive bodies on c3893b2e ==="
gh api "repos/$R/pulls/804/reviews" -q '.[] | select(.commit_id|startswith("c3893b2e")) | select(.body|length>40) | "\n===== \(.user.login) [\(.state)] =====\n\(.body)"'
echo "DONE_S14"
