Add build validation pipeline status column to PR list - #28
Draft
tacoxse wants to merge 1 commit into
Draft
Conversation
Adds a "Build" column showing an aggregated status icon for the build validation (branch policy) pipelines of each pull request, with a tooltip breaking down each pipeline's status. Statuses are fetched lazily per visible PR via the Policy Evaluations API, mirroring the existing comment-threads loading pattern (cache + capped concurrency). Addresses the build status portion of karlingen#1. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
Summary
Addresses the build status part of #1 — adds a Build column to the pull request list (between Merge Status and Comments) showing the status of the build validation pipelines for each PR.
PolicyRestClient.getPolicyEvaluations), the same source the native PR page uses for build validation checks — filtered to enabled, non-deleted build policies, so both required and optional build validation are covered. No new extension scopes needed (vso.codesuffices).…while loading, and an empty cell when no build validation policy applies.setState, module-level cache shared across component instances, graceful fallback to empty on API errors.Per CONTRIBUTING.md: README updated with the interface change, manifest version bumped 1.0.43 → 1.0.44.
Testing
tsc --noEmit --skipLibCheckclean; production webpack build succeeds.Notes
🤖 Generated with Claude Code