Support caching links for microsoft/mcp#15598
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the GitHub Pages link-check pipeline to include additional repositories in the local clone set used to optimize GitHub link validation, with the intent of adding cache-linking support for microsoft/mcp.
Changes:
- Switch repo entries to fully-qualified
org/repoform and adjust the clone URL accordingly. - Add
microsoft/mcpto the set of repos cloned into$(Pipeline.Workspace)for link-check optimization.
| "microsoft/mcp" | ||
| ) | ||
| foreach ($repo in $reposToClone) { | ||
| git clone https://github.com/Azure/${repo}.git --depth 1 --single-branch --branch main | ||
| git clone https://github.com/${repo}.git --depth 1 --single-branch --branch main | ||
| } |
There was a problem hiding this comment.
@alzimmermsft We might need to add a regex for the org in the above command.
|
The following pipelines have been queued for testing: |
| "Azure/azure-sdk-for-net", | ||
| "Azure/azure-sdk-for-python", | ||
| "Azure/azure-sdk-for-rust", | ||
| "microsoft/mcp" |
There was a problem hiding this comment.
I see you added the repo to clone but you also still need to point it at a file in the repo to verify so the links get cached.
Add microsoft/mcp to cache linking