ci-analysis skill: MSBuild guidance, merge commit shortcut, MCP alternatives#124359
Merged
lewing merged 2 commits intodotnet:mainfrom Feb 13, 2026
Merged
ci-analysis skill: MSBuild guidance, merge commit shortcut, MCP alternatives#124359lewing merged 2 commits intodotnet:mainfrom
lewing merged 2 commits intodotnet:mainfrom
Conversation
…get SHA extraction
Contributor
There was a problem hiding this comment.
Pull request overview
This PR enhances the ci-analysis skill with three focused improvements to documentation, providing better guidance for CI failure investigation workflows. The changes add shortcuts for extracting merge commit information, clarify when to use MCP tools vs CLI alternatives, and add cross-platform warnings for MSBuild investigations.
Changes:
- Added merge commit shortcut using GitHub API to simplify target branch HEAD extraction for current builds
- Added inline MCP tool alternative references (
get_commit,pull_request_read,search_issues) throughout documentation - Added MSBuild cross-platform anti-pattern warning about verifying changes across all platforms
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/skills/ci-analysis/references/build-progression-analysis.md | Added Step 2b shortcut for extracting target branch HEAD via GitHub API merge commit; added get_commit MCP alternative; added MSBuild cross-platform anti-pattern warning |
| .github/skills/ci-analysis/references/azure-cli.md | Added MCP-first preamble noting AzDO MCP tools handle most queries with Azure CLI as fallback |
| .github/skills/ci-analysis/references/azdo-helix-reference.md | Added parenthetical note to use search_issues MCP tool when available, otherwise gh CLI |
| .github/skills/ci-analysis/SKILL.md | Added pull_request_read MCP tool as alternative to gh pr checks in PR Analysis Mode workflow description; clarified MCP tools provide structured access when available |
.github/skills/ci-analysis/references/build-progression-analysis.md
Outdated
Show resolved
Hide resolved
44df0b4 to
cca6013
Compare
steveisok
approved these changes
Feb 12, 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.
Follow-up to #124240 with three improvements to the ci-analysis skill:
Changes
MSBuild cross-platform guidance (build-progression-analysis.md)
;vs:) when comparing binlogs across Windows/Linux Helix queuesMerge commit shortcut for target SHA extraction (build-progression-analysis.md)
gh api repos/{owner}/{repo}/git/commits/{sourceVersion} --jq '.parents[0].sha'get_commitMCP tool as alternative when availableInline MCP tool alternatives (all 4 files)
pull_request_readas alternative togh pr checksin SKILL.mdsearch_issuesMCP note in azdo-helix-reference.mdget_commitMCP note in build-progression-analysis.mdAll changes are minimal inline additions — no structural changes to the skill.