diff --git a/src/GitHub.App/Services/FromGraphQlExtensions.cs b/src/GitHub.App/Services/FromGraphQlExtensions.cs index 0bbd1ce321..06a1c46e2e 100644 --- a/src/GitHub.App/Services/FromGraphQlExtensions.cs +++ b/src/GitHub.App/Services/FromGraphQlExtensions.cs @@ -29,6 +29,10 @@ public static class FromGraphQlExtensions return CheckConclusionState.Success; case Octokit.GraphQL.Model.CheckConclusionState.Neutral: return CheckConclusionState.Neutral; + case Octokit.GraphQL.Model.CheckConclusionState.Skipped: + return CheckConclusionState.Skipped; + case Octokit.GraphQL.Model.CheckConclusionState.Stale: + return CheckConclusionState.Stale; default: throw new ArgumentOutOfRangeException(nameof(value), value, null); } diff --git a/src/GitHub.App/Services/MentionsAutoCompleteSource.cs b/src/GitHub.App/Services/MentionsAutoCompleteSource.cs index 68fc002292..dab165ce89 100644 --- a/src/GitHub.App/Services/MentionsAutoCompleteSource.cs +++ b/src/GitHub.App/Services/MentionsAutoCompleteSource.cs @@ -54,7 +54,7 @@ public IObservable GetSuggestions() { query = new Query().Repository(owner: Var(nameof(owner)), name: Var(nameof(name))) .Select(repository => - repository.MentionableUsers(null, null, null, null) + repository.MentionableUsers(null, null, null, null, null) .AllPages() .Select(sourceItem => new SuggestionItem(sourceItem.Login, diff --git a/src/GitHub.Exports/Models/CheckConclusionState.cs b/src/GitHub.Exports/Models/CheckConclusionState.cs index 3659c3dadb..a8f24d076b 100644 --- a/src/GitHub.Exports/Models/CheckConclusionState.cs +++ b/src/GitHub.Exports/Models/CheckConclusionState.cs @@ -8,5 +8,7 @@ public enum CheckConclusionState Failure, Success, Neutral, + Skipped, + Stale } } \ No newline at end of file diff --git a/src/GitHub.InlineReviews/Services/PullRequestSessionService.cs b/src/GitHub.InlineReviews/Services/PullRequestSessionService.cs index 4cdfa9be41..5987d47b3d 100644 --- a/src/GitHub.InlineReviews/Services/PullRequestSessionService.cs +++ b/src/GitHub.InlineReviews/Services/PullRequestSessionService.cs @@ -347,7 +347,7 @@ async Task ReadPullRequestDetailWithResolved(HostAddress }).ToList(), Threads = pr.ReviewThreads(null, null, null, null).AllPages().Select(thread => new PullRequestReviewThreadModel { - Comments = thread.Comments(null, null, null, null).AllPages().Select(comment => new CommentAdapter + Comments = thread.Comments(null, null, null, null, null).AllPages().Select(comment => new CommentAdapter { Id = comment.Id.Value, PullRequestId = comment.PullRequest.Number, diff --git a/submodules/octokit.graphql.net b/submodules/octokit.graphql.net index ff20b6e9de..b38412dc81 160000 --- a/submodules/octokit.graphql.net +++ b/submodules/octokit.graphql.net @@ -1 +1 @@ -Subproject commit ff20b6e9de3d016112de8787ec8ade080214db2b +Subproject commit b38412dc816e034e155f8f89c14da65e04f659ad