87a1110c15
Sort all JSON object keys alphabetically at every level in toolsnaps by unmarshaling and remarshaling. This leverages Go's built-in behavior where json.Marshal automatically sorts map keys alphabetically, ensuring consistent field ordering and eliminating noop churn in diffs. Co-authored-by: SamMorrowDrums <4811358+SamMorrowDrums@users.noreply.github.com>
33 lines
777 B
Plaintext
33 lines
777 B
Plaintext
{
|
|
"annotations": {
|
|
"title": "Update pull request branch"
|
|
},
|
|
"description": "Update the branch of a pull request with the latest changes from the base branch.",
|
|
"inputSchema": {
|
|
"properties": {
|
|
"expectedHeadSha": {
|
|
"description": "The expected SHA of the pull request's HEAD ref",
|
|
"type": "string"
|
|
},
|
|
"owner": {
|
|
"description": "Repository owner",
|
|
"type": "string"
|
|
},
|
|
"pullNumber": {
|
|
"description": "Pull request number",
|
|
"type": "number"
|
|
},
|
|
"repo": {
|
|
"description": "Repository name",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"owner",
|
|
"repo",
|
|
"pullNumber"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"name": "update_pull_request_branch"
|
|
} |