diff --git a/Octokit/Models/Response/EventInfo.cs b/Octokit/Models/Response/EventInfo.cs index cda7507977..569e50192c 100644 --- a/Octokit/Models/Response/EventInfo.cs +++ b/Octokit/Models/Response/EventInfo.cs @@ -163,35 +163,55 @@ public enum EventInfoState HeadRefRestored, /// - /// The actor unsubscribed from notifications for an issue. + /// The actor dismissed a review from the pull request. /// - Unsubscribed, + ReviewDismissed, /// - /// A comment was added to the issue. + /// The actor requested review from the subject on this pull request. /// - Commented, + ReviewRequested, /// - /// A commit was added to the pull request's HEAD branch. - /// Only provided for pull requests. + /// The actor removed the review request for the subject on this pull request. /// - Committed, + ReviewRequestRemoved, /// - /// The actor requested review from the subject on this pull request. + /// The issue was added to a project board. /// - ReviewRequested, + AddedToProject, /// - /// The actor dismissed a review from the pull request. + /// The issue was moved between columns in a project board. /// - ReviewDismissed, + MovedColumnsInProject, /// - /// The actor removed the review request for the subject on this pull request. + /// The issue was removed from a project board. /// - ReviewRequestRemoved, + RemovedFromProject, + + /// + /// The issue was created by converting a note in a project board to an issue. + /// + ConvertedNoteToIssue, + + /// + /// The actor unsubscribed from notifications for an issue. + /// + Unsubscribed, + + /// + /// A comment was added to the issue. + /// + Commented, + + /// + /// A commit was added to the pull request's HEAD branch. + /// Only provided for pull requests. + /// + Committed, /// /// Base branch of the pull request was changed.