Skip to content

Commit

Permalink
Add Missing Event Types (#1536)
Browse files Browse the repository at this point in the history
* Adding missing review types to event info.

* Fixing whitespace.

* Reword `BaseRefChanged` comment
  • Loading branch information
lynnfaraday authored and ryangribble committed Jan 13, 2017
1 parent 4cec3a6 commit eeb98c7
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion Octokit/Models/Response/EventInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,26 @@ public enum EventInfoState
/// </summary>
Committed,

/// <summary>
/// The actor requested review from the subject on this pull request.
/// </summary>
ReviewRequested,

/// <summary>
/// The actor dismissed a review from the pull request.
/// </summary>
ReviewDismissed,

/// <summary>
/// The actor removed the review request for the subject on this pull request.
/// </summary>
ReviewRequestRemoved,

/// <summary>
/// Base branch of the pull request was changed.
/// </summary>
BaseRefChanged,

/// <summary>
/// The issue was referenced from another issue.
/// The source attribute contains the id, actor, and
Expand All @@ -186,4 +206,4 @@ public enum EventInfoState
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Crossreferenced")]
Crossreferenced
}
}
}

0 comments on commit eeb98c7

Please sign in to comment.