Skip to content

Commit

Permalink
add missed events (#2101)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Lobanov authored Feb 18, 2020
1 parent 804aa48 commit 0074e76
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion Octokit/Models/Response/EventInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,12 @@ public enum EventInfoState
[Parameter(Value = "head_ref_force_pushed")]
HeadRefForcePushed,

/// <summary>
/// The pull request is ready for review
/// </summary>
[Parameter(Value = "ready_for_review")]
ReadyForReview,

/// <summary>
/// The actor dismissed a review from the pull request.
/// </summary>
Expand Down Expand Up @@ -308,6 +314,24 @@ public enum EventInfoState
/// An issue was transferred.
/// </summary>
[Parameter(Value = "transferred")]
Transferred
Transferred,

/// <summary>
/// An issue was connected.
/// </summary>
[Parameter(Value = "connected")]
Connected,

/// <summary>
/// An issue was pinned.
/// </summary>
[Parameter(Value = "pinned")]
Pinned,

/// <summary>
/// An issue was unpinned.
/// </summary>
[Parameter(Value = "unpinned")]
Unpinned,
}
}

0 comments on commit 0074e76

Please sign in to comment.