From eb10aae74fd50cfe9a2eddc2871907e0eb6af883 Mon Sep 17 00:00:00 2001 From: Linda Naughton Date: Sat, 29 Apr 2017 12:03:40 -0400 Subject: [PATCH] Adding RemovedFromProject and other missing EventInfoState types. (#1591) * Adding missing review types to event info. * Fixing whitespace. * Reword `BaseRefChanged` comment * Adding missing event types. --- Octokit/Models/Response/EventInfo.cs | 50 +++++++++++++++++++--------- 1 file changed, 35 insertions(+), 15 deletions(-) diff --git a/Octokit/Models/Response/EventInfo.cs b/Octokit/Models/Response/EventInfo.cs index cda75079..569e5019 100644 --- a/Octokit/Models/Response/EventInfo.cs +++ b/Octokit/Models/Response/EventInfo.cs @@ -162,6 +162,41 @@ namespace Octokit /// HeadRefRestored, + /// + /// The actor dismissed a review from the pull request. + /// + ReviewDismissed, + + /// + /// The actor requested review from the subject on this pull request. + /// + ReviewRequested, + + /// + /// The actor removed the review request for the subject on this pull request. + /// + ReviewRequestRemoved, + + /// + /// The issue was added to a project board. + /// + AddedToProject, + + /// + /// The issue was moved between columns in a project board. + /// + MovedColumnsInProject, + + /// + /// The issue was removed from a project board. + /// + 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. /// @@ -178,21 +213,6 @@ namespace Octokit /// Committed, - /// - /// The actor requested review from the subject on this pull request. - /// - ReviewRequested, - - /// - /// The actor dismissed a review from the pull request. - /// - ReviewDismissed, - - /// - /// The actor removed the review request for the subject on this pull request. - /// - ReviewRequestRemoved, - /// /// Base branch of the pull request was changed. ///