#!/usr/bin/env bash
set -euo pipefail
for id in 3431612112 3431612116 3431612122 3431612126 3431614165; do
  echo "===== COMMENT $id ====="
  gh api "repos/gbharg/exult-agent/pulls/comments/$id" --jq '.path + ":" + (.line|tostring) + " | " + .user.login + "\n" + .body'
  echo ""
done
