mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-09 04:56:29 +00:00
remove deprecated code for old Check Suites API (#2130)
This commit is contained in:
@@ -142,29 +142,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="newCheckSuite">Details of the Check Suite to create</param>
|
||||
IObservable<CheckSuite> Create(long repositoryId, NewCheckSuite newCheckSuite);
|
||||
|
||||
/// <summary>
|
||||
/// Triggers GitHub to create a new check suite, without pushing new code to a repository
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="https://developer.github.com/v3/checks/suites/#request-check-suites">Check Suites API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="request">Details of the Check Suite request</param>
|
||||
[Obsolete("This method has been deprecated in the GitHub Api, however can still be used on GitHub Enterprise 2.14")]
|
||||
IObservable<bool> Request(string owner, string name, CheckSuiteTriggerRequest request);
|
||||
|
||||
/// <summary>
|
||||
/// Triggers GitHub to create a new check suite, without pushing new code to a repository
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="https://developer.github.com/v3/checks/suites/#request-check-suites">Check Suites API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <param name="request">Details of the Check Suite request</param>
|
||||
[Obsolete("This method has been deprecated in the GitHub Api, however can still be used on GitHub Enterprise 2.14")]
|
||||
IObservable<bool> Request(long repositoryId, CheckSuiteTriggerRequest request);
|
||||
|
||||
/// <summary>
|
||||
/// Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository
|
||||
/// </summary>
|
||||
@@ -186,4 +163,4 @@ namespace Octokit.Reactive
|
||||
/// <param name="checkSuiteId">The Id of the check suite</param>
|
||||
IObservable<bool> Rerequest(long repositoryId, long checkSuiteId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user