github.getIssueComment gets one conversation comment by ID.
automations/get-github-comment.automation.ts
commentId. Returns the comment’s id and body. Requires Issues read or 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 GitHub issue or pull request comment.
github.getIssueComment gets one conversation comment by ID.
import { automation } from "automate.ax"
import { github } from "automate.ax/github"
export default automation("Get GitHub comment", () => {
const comment = github.getIssueComment({
commentId: 123456,
owner: "SentsCo",
repository: "automate.ax",
})
})
commentId. Returns the comment’s id and body. Requires Issues read or Pull requests read permission.