mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 11:40:42 +00:00
BREAKING CHANGE: Issue ID should be a long (#2962)
Issue ID should be a long According to the documentation at https://docs.github.com/en/rest/issues/issues. Fixes #2351 for issue ids. Co-authored-by: Nick Floyd <139819+nickfloyd@users.noreply.github.com>
This commit is contained in:
@@ -260,7 +260,7 @@ public class IssueCommentsClientTests
|
||||
|
||||
const string owner = "octokit";
|
||||
const string name = "octokit.net";
|
||||
const int issueNumber = 1115;
|
||||
const long issueNumber = 1115;
|
||||
const long repositoryId = 7528679;
|
||||
|
||||
public TheGetAllForIssueMethod()
|
||||
@@ -594,7 +594,7 @@ public class IssueCommentsClientTests
|
||||
return issue.Number;
|
||||
}
|
||||
|
||||
async static Task<long> HelperCreateIssueCommentWithReactions(string owner, string repo, int issueNumber)
|
||||
async static Task<long> HelperCreateIssueCommentWithReactions(string owner, string repo, long issueNumber)
|
||||
{
|
||||
var github = Helper.GetAuthenticatedClient();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user