From 75d30f971563fc7ec5e1d99d773bad20051f3f30 Mon Sep 17 00:00:00 2001 From: snirburkush Date: Sun, 25 Feb 2024 20:08:41 +0200 Subject: [PATCH] wip --- Octokit.Tests.Integration/Clients/ProjectCardsClientTests.cs | 2 +- Octokit/Models/Response/Issue.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Octokit.Tests.Integration/Clients/ProjectCardsClientTests.cs b/Octokit.Tests.Integration/Clients/ProjectCardsClientTests.cs index 97568ead56..67845a3524 100644 --- a/Octokit.Tests.Integration/Clients/ProjectCardsClientTests.cs +++ b/Octokit.Tests.Integration/Clients/ProjectCardsClientTests.cs @@ -453,7 +453,7 @@ private static async Task CreateArchivedCardHelper(IGitHubClient gi return result; } - private static async Task CreateIssueCardHelper(IGitHubClient githubClient, int issueId, int columnId) + private static async Task CreateIssueCardHelper(IGitHubClient githubClient, long issueId, int columnId) { var newCard = new NewProjectCard(issueId, ProjectCardContentType.Issue); var result = await githubClient.Repository.Project.Card.Create(columnId, newCard); diff --git a/Octokit/Models/Response/Issue.cs b/Octokit/Models/Response/Issue.cs index 94f8c49460..b2fc9930be 100644 --- a/Octokit/Models/Response/Issue.cs +++ b/Octokit/Models/Response/Issue.cs @@ -12,7 +12,7 @@ public class Issue { public Issue() { } - public Issue(string url, string htmlUrl, string commentsUrl, string eventsUrl, int number, ItemState state, string title, string body, User closedBy, User user, IReadOnlyList