mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 12:03:19 +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
@@ -82,5 +82,15 @@ namespace Octokit
|
||||
/// <param name="number">The pull request number</param>
|
||||
/// <returns></returns>
|
||||
Task<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>
|
||||
Task<IReadOnlyList<Commit>> Commits(string owner, string name, int number);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user