mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 22:25:12 +00:00
Pull request commit list now implemented / tested
Renamed and enhanced existing Merged tests.
This commit is contained in:
committed by
Brendan Forster
parent
c59c8c1389
commit
0db0307aa9
@@ -84,5 +84,15 @@ namespace Octokit
|
||||
/// <param name="number">The pull request number</param>
|
||||
/// <returns></returns>
|
||||
IObservable<PullRequestMerge> Merged(string owner, string name, int number);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the list of commits on a pull request.
|
||||
/// </summary>
|
||||
/// <remarks>http://developer.github.com/v3/pulls/#list-commits-on-a-pull-request</remarks>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="number">The pull request number</param>
|
||||
/// <returns></returns>
|
||||
IObservable<Commit> Commits(string owner, string name, int number);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user