Update to latest ci-analysis skill#65835
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repo-local ci-analysis skill to match the latest upstream content and removes the dependency on the external lewing/agent-plugins plugin in the test quarantine GitHub workflow.
Changes:
- Removed
lewing/agent-pluginsplugin configuration/installation from thetest-quarantineworkflow. - Updated
.github/skills/ci-analysis(script + docs) to the latest upstream versions, including Helix URL handling tweaks. - Removed the
binlog-comparison.mdreference document (and adjusted some skill docs accordingly).
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/test-quarantine.md |
Removes plugin configuration from the workflow definition. |
.github/workflows/test-quarantine.lock.yml |
Regenerated lockfile; removes plugin install step and related secret handling. |
.github/skills/ci-analysis/scripts/Get-CIStatus.ps1 |
Updates defaults and Helix URL handling (incl. escaping work item names for console URLs). |
.github/skills/ci-analysis/SKILL.md |
Refreshes skill description and guidance; introduces new cross-doc links. |
.github/skills/ci-analysis/references/sql-tracking.md |
Updates example default repo in SQL snippet. |
.github/skills/ci-analysis/references/manual-investigation.md |
Adds remote Helix investigation guidance and clarifies fallback usage. |
.github/skills/ci-analysis/references/helix-artifacts.md |
Updates wording around MCP tooling and artifact download patterns. |
.github/skills/ci-analysis/references/delegation-patterns.md |
Tightens delegation guidance; expands TRX/result parsing steps. |
.github/skills/ci-analysis/references/build-progression-analysis.md |
Condenses progression guidance text. |
.github/skills/ci-analysis/references/azure-cli.md |
Streamlines Azure CLI guidance and updates examples. |
.github/skills/ci-analysis/references/azdo-helix-reference.md |
Updates examples and guidance (now primarily using runtime examples). |
.github/skills/ci-analysis/references/binlog-comparison.md |
Deleted. |
Comment on lines
48
to
50
| # Other dotnet repositories | ||
| ./scripts/Get-CIStatus.ps1 -PRNumber 12345 -Repository "dotnet/runtime" | ||
| ./scripts/Get-CIStatus.ps1 -PRNumber 67890 -Repository "dotnet/sdk" | ||
| ./scripts/Get-CIStatus.ps1 -PRNumber 11111 -Repository "dotnet/roslyn" | ||
| ./scripts/Get-CIStatus.ps1 -PRNumber 12345 -Repository "dotnet/aspnetcore" | ||
| ``` |
| CREATE TABLE IF NOT EXISTS pr_comments ( | ||
| pr_number INT, | ||
| repo TEXT DEFAULT 'dotnet/aspnetcore', | ||
| repo TEXT DEFAULT 'dotnet/runtime', |
| [switch]$ClearCache, | ||
|
|
||
| [string]$Repository = "dotnet/aspnetcore", | ||
| [string]$Repository = "dotnet/runtime", |
| **Helix failures**: Test failures on distributed infrastructure. | ||
|
|
||
| **Local test failures**: Some repos (e.g., dotnet/sdk) run tests directly on build agents. These can also match known issues - search for the test name with the "Known Build Error" label. | ||
| For full parameter reference and mode details, see [references/script-modes.md](references/script-modes.md). |
| 1. Check if same test fails on the target branch before assuming transient | ||
| 2. Look for `[SkipOnHelix]` and `[QuarantinedTest]` attributes for known skipped or quarantined tests | ||
| 1. Check if same test fails on target branch before assuming transient | ||
| 2. Look for `[ActiveIssue]` attributes for known skipped tests |
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.
Get latest from https://github.com/lewing/agent-plugins/tree/main/plugins/dotnet-dnceng/skills/ci-analysis & use it directly in quarantine workflow