A user edits a comment on a commit in a repository. This payload comes with an event key of repo:comment:edited.

interface RepoCommentEdited {
    actor: repo.commentEdited.Actor;
    comment: repo.commentEdited.Comment;
    commit: string;
    date: string;
    eventKey: "repo:comment:edited";
    previousComment: string;
    repository: repo.commentEdited.Repository;
}

Properties

The user who edits the commit.

The comment edited.

commit: string

The hash of the commit.

date: string
eventKey
previousComment: string

The text of the comment prior to editing.

The repository with the commit.