PR Dashboard: Report non-blocking check failures#105
Open
trask wants to merge 6 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds configurable reporting of failed non-blocking checks to PR dashboard status comments.
Changes:
- Adds repository-level glob configuration for optional checks.
- Collects and surfaces matching failures without changing routing or CI status.
- Enables link-check and Codecov reporting for
opentelemetry-java.
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
pull-request-dashboard/README.md |
Documents optional-check configuration and behavior. |
.github/workflows/pull-request-dashboard.yml |
Passes patterns into the reusable workflow. |
.github/workflows/pull-request-dashboard-repo.yml |
Converts configured patterns into CLI arguments. |
.github/scripts/pull-request-dashboard/test_top_level_actions.py |
Updates a call for the new argument. |
.github/scripts/pull-request-dashboard/test_pr_status_comment.py |
Tests optional-failure comment rendering. |
.github/scripts/pull-request-dashboard/test_github_cli.py |
Tests check matching and rollup separation. |
.github/scripts/pull-request-dashboard/test_dashboard.py |
Tests fact propagation and updates signatures. |
.github/scripts/pull-request-dashboard/repositories.json |
Enables the initial Java repository rollout. |
.github/scripts/pull-request-dashboard/RATIONALE.md |
Records the new informational behavior. |
.github/scripts/pull-request-dashboard/pr_status_comment.py |
Adds optional-failure notes to author actions. |
.github/scripts/pull-request-dashboard/github_cli.py |
Collects configured non-blocking failures. |
.github/scripts/pull-request-dashboard/dashboard.py |
Propagates patterns and failure facts. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
trask
marked this pull request as ready for review
July 18, 2026 16:21
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.
Add per-repository non-blocking check patterns and surface matching failed optional checks in the live PR status comment alongside required-check failures, without changing routing or the dashboard CI column. Enable the initial rollout for opentelemetry-java link and project-level Codecov checks.
Fixes #100