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:
Daniel Cazzulino
2025-01-08 14:14:06 -03:00
committed by GitHub
parent 7c6c08f861
commit ffd1b40ecb
36 changed files with 238 additions and 238 deletions
@@ -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();