Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/actionify/src/deps/octokit-types.ts>PullRequestReviewComment

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
interface PullRequestReviewComment
import { type PullRequestReviewComment } from "https://deno.land/x/actionify@0.3.0/src/deps/octokit-types.ts";

The comment itself.

Properties

url: string

URL for the pull request review comment

pull_request_review_id: number

The ID of the pull request review to which the comment belongs.

id: number

The ID of the pull request review comment.

node_id: string

The node ID of the pull request review comment.

diff_hunk: string

The diff of the line that the comment refers to.

path: string

The relative path of the file to which the comment applies.

position: number | null

The line index in the diff to which the comment applies.

original_position: number

The index of the original line in the diff to which the comment applies.

commit_id: string

The SHA of the commit to which the comment applies.

original_commit_id: string

The SHA of the original commit to which the comment applies.

user: User
body: string

The text of the comment.

created_at: string
updated_at: string
html_url: string

HTML URL for the pull request review comment.

pull_request_url: string

URL for the pull request that the review comment belongs to.

author_association: AuthorAssociation
reactions: Reactions
start_line: number | null

The first line of the range for a multi-line comment.

original_start_line: number | null

The first line of the range for a multi-line comment.

start_side: "LEFT" | "RIGHT" | null

The side of the first line of the range for a multi-line comment.

line: number | null

The line of the blob to which the comment applies. The last line of the range for a multi-line comment

original_line: number

The line of the blob to which the comment applies. The last line of the range for a multi-line comment

side: "LEFT" | "RIGHT"

The side of the first line of the range for a multi-line comment.

optional
in_reply_to_id: number

The comment ID to reply to.