Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding RemovedFromProject and other missing EventInfoState types. #1591

Merged
merged 5 commits into from
Apr 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 33 additions & 13 deletions Octokit/Models/Response/EventInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,35 +163,55 @@ public enum EventInfoState
HeadRefRestored,

/// <summary>
/// The actor unsubscribed from notifications for an issue.
/// The actor dismissed a review from the pull request.
/// </summary>
Unsubscribed,
ReviewDismissed,

/// <summary>
/// A comment was added to the issue.
/// The actor requested review from the subject on this pull request.
/// </summary>
Commented,
ReviewRequested,

/// <summary>
/// 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.
/// </summary>
Committed,
ReviewRequestRemoved,

/// <summary>
/// The actor requested review from the subject on this pull request.
/// The issue was added to a project board.
/// </summary>
ReviewRequested,
AddedToProject,

/// <summary>
/// The actor dismissed a review from the pull request.
/// The issue was moved between columns in a project board.
/// </summary>
ReviewDismissed,
MovedColumnsInProject,

/// <summary>
/// The actor removed the review request for the subject on this pull request.
/// The issue was removed from a project board.
/// </summary>
ReviewRequestRemoved,
RemovedFromProject,

/// <summary>
/// The issue was created by converting a note in a project board to an issue.
/// </summary>
ConvertedNoteToIssue,

/// <summary>
/// The actor unsubscribed from notifications for an issue.
/// </summary>
Unsubscribed,

/// <summary>
/// A comment was added to the issue.
/// </summary>
Commented,

/// <summary>
/// A commit was added to the pull request's HEAD branch.
/// Only provided for pull requests.
/// </summary>
Committed,

/// <summary>
/// Base branch of the pull request was changed.
Expand Down