/** Checks if this pull request already has a greeting */
 protected boolean hasGreetingComment(GHPullRequest pr) throws IOException {
   for (GHIssueComment c : pr.listComments()) {
     if (c.getBody().contains(LINK)) return true;
   }
   return false;
 }