Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,23 @@ When facing issues, direct users to:
- [Support for Azure SDK for Java](https://github.com/Azure/azure-sdk-for-java/blob/main/SUPPORT.md)
- [GitHub Issues](https://github.com/Azure/azure-sdk-for-java/issues/new/choose)
- [Stack Overflow with azure-java-sdk tag](https://stackoverflow.com/questions/tagged/azure-java-sdk)

## SDK release

There are two tools to help with SDK releases:
- Check SDK release readiness
- Release SDK

### Check SDK Release Readiness
Run `CheckPackageReleaseReadiness` to verify if the package is ready for release. This tool checks:
- API review status
- Change log status
- Package name approval(If package is new and releasing a preview version)
- Release date is set in release tracker

### Release SDK
Run `ReleasePackage` to release the package. This tool requires package name and language as inputs. It will:
- Check if the package is ready for release
- Identify the release pipeline
- Trigger the release pipeline.
User needs to approve the release stage in the pipeline after it is triggered.
12 changes: 10 additions & 2 deletions .vscode/mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@
"servers": {
"azure-sdk-java-mcp": {
"type": "stdio",
"command": "pwsh",
"command": "pwsh",
"args": [
"${workspaceFolder}/eng/tools/mcp/azure-sdk-java-mcp/azure-sdk-java-mcp.ps1"
]
}
},
"azure-sdk-mcp": {
"type": "stdio",
"command": "pwsh",
"args": [
"${workspaceFolder}/eng/common/mcp/azure-sdk-mcp.ps1",
"-Run"
]
},
}
}