Skip to main content

github.commitcomment

Home > @runlightyear/github > CommitComment

CommitComment type

Documentation: https://docs.github.com/webhooks-and-events/webhooks/webhook-events-and-payloads\#commit\_comment

Signature:
declare type CommitComment = {
authorAssociation: "COLLABORATOR" | "CONTRIBUTOR" | "FIRST_TIMER" | "FIRST_TIME_CONTRIBUTOR" | "MANNEQUIN" | "MEMBER" | "NONE" | "OWNER";
body: string;
commitId: string;
createdAt: string;
htmlUrl: string;
id: number;
line: number | null;
nodeId: string;
path: string | null;
position: number | null;
reactions: Reactions;
updatedAt: string;
url: string;
user: User | null;
};
References:

Reactions, User