#!/usr/bin/env bash
set -euo pipefail
for id in 3431646804 3431646815 3431646818 3431646828 3431646831 3431646837 3431646840 3431646844 3431659367 3431659397 3431659416; do
  echo "===== $id ====="
  gh api "repos/gbharg/exult-agent/pulls/comments/$id" --jq '.path + ":" + (.line|tostring) + " | " + .user.login + "\n" + (.body|.[0:240])'
  echo ""
done
