-
Notifications
You must be signed in to change notification settings - Fork 5.1k
[azsdk-cli] Add script override config for azsdk cli/mcp #53592
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces a configuration file for the azsdk CLI/MCP tool to enable script overrides for repository operations. The configuration maps specific operations to custom PowerShell scripts that should be executed instead of default behavior.
- Adds a new JSON configuration file that defines command overrides for the azsdk CLI tool
- Configures the "CodeChecks" operation to use a custom PowerShell script located at
eng/scripts/CodeChecks.ps1
| // See https://github.com/azure/azure-sdk-tools/blob/main/tools/azsdk-cli/docs/specs/7-repo-tooling-contract.md | ||
| [ | ||
| { | ||
| "tags": [ "CodeChecks" ], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was not expecting at this level. I'm expecting this to be "UpdateMetada" or another MCP tool name.
m-redding
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm, I don't have a preference on the tag name
weshaggard
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's hold on this until we settle on the design.
Adding the corresponding config to pair with Azure/azure-sdk-tools#12696
Specifically, the dotnet language check service from
azsdkcalls theCodeChecks.ps1script, so this config is required to support Azure/azure-sdk-tools#12696FYI @m-redding