Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds “view check run logs” support to the PR experience by wiring check run identifiers through GraphQL/models, exposing a new checkrunlog: document, and adding a webview button to open logs for failed checks.
Changes:
- Add a “View Logs” icon button for failed check runs in the PR status checks webview and route the request to the extension host.
- Introduce a
checkrunlog:text document content provider and a corresponding URI scheme to display fetched logs in an editor. - Plumb
databaseId/isCheckRunthrough GraphQL and status check models, and extend the LM tool to include logs for failed checks.
Reviewed changes
Copilot reviewed 13 out of 14 changed files in this pull request and generated 8 comments.
Show a summary per file
| File | Description |
|---|---|
| webviews/editorWebview/index.css | Layout and hover styling for the new status check log action UI. |
| webviews/components/merge.tsx | Adds “View Logs” action for failed check runs and calls into the webview context. |
| webviews/components/icon.tsx | Exposes a new outputIcon for the log button. |
| webviews/common/context.tsx | Adds viewCheckLogs message plumbing from webview to extension. |
| src/view/checkRunLogContentProvider.ts | New content provider to resolve checkrunlog: URIs into log text. |
| src/lm/tools/activePullRequestTool.ts | Extends LM tool output to include failed check run logs. |
| src/github/queriesShared.gql | Adds databaseId to CheckRun selections for checks queries. |
| src/github/pullRequestOverview.ts | Handles the new pr.view-check-logs message and opens the checkrunlog: document. |
| src/github/interface.ts | Extends PullRequestCheckStatus with databaseId and isCheckRun. |
| src/github/graphql.ts | Adds databaseId to the generated CheckRun type. |
| src/github/githubRepository.ts | Implements getCheckRunLogs and maps check run fields into status check models. |
| src/extension.ts | Registers the new Schemes.CheckRunLog text document content provider. |
| src/common/uri.ts | Adds Schemes.CheckRunLog to the scheme enum. |
| resources/icons/codicons/output.svg | New icon asset for the “View Logs” button. |
ulugbekna
approved these changes
Feb 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.