github.getPullRequestReviewComment gets one inline diff comment by ID.
automations/get-github-review-comment.automation.ts
commentId. Returns the inline comment’s id, body, and file path. Requires Pull requests read permission.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get one inline GitHub pull request review comment.
github.getPullRequestReviewComment gets one inline diff comment by ID.
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("Get GitHub review comment", () => {
const comment = github.getPullRequestReviewComment({
commentId: 123456,
owner: "SentsCo",
repository: "automate.ax",
})
})
commentId. Returns the inline comment’s id, body, and file path. Requires Pull requests read permission.