Skip to content

Commit

Permalink
github: return comment id (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
brig authored Feb 10, 2025
1 parent c360100 commit 20c1f65
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,17 +278,17 @@ private Map<String, Object> commentPR(Map<String, Object> in, String gitHubUri)

if (dryRunMode) {
log.info("Dry-run mode enabled: Skipping comment on PR #{} in {}/{}", gitHubPRID, gitHubOrgName, gitHubRepoName);
return Map.of();
return Map.of("id", 0);
}

log.info("Commenting PR #{} in {}/{}", gitHubPRID, gitHubOrgName, gitHubRepoName);

try {
PullRequest pullRequest = prService.getPullRequest(repo, gitHubPRID);
issueService.createComment(repo, Integer.toString(pullRequest.getNumber()), gitHubPRComment);
Comment response = issueService.createComment(repo, Integer.toString(pullRequest.getNumber()), gitHubPRComment);
log.info("Commented on PR# {}", gitHubPRID);

return Collections.emptyMap();
return Map.of("id", response.getId());
} catch (IOException e) {
throw new RuntimeException("Cannot comment on the pull request: " + e.getMessage());
}
Expand Down

0 comments on commit 20c1f65

Please sign in to comment.