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>
29 lines
582 B
Plaintext
29 lines
582 B
Plaintext
{
|
|
"annotations": {
|
|
"title": "Cancel workflow run"
|
|
},
|
|
"description": "Cancel a workflow run",
|
|
"inputSchema": {
|
|
"properties": {
|
|
"owner": {
|
|
"description": "Repository owner",
|
|
"type": "string"
|
|
},
|
|
"repo": {
|
|
"description": "Repository name",
|
|
"type": "string"
|
|
},
|
|
"run_id": {
|
|
"description": "The unique identifier of the workflow run",
|
|
"type": "number"
|
|
}
|
|
},
|
|
"required": [
|
|
"owner",
|
|
"repo",
|
|
"run_id"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"name": "cancel_workflow_run"
|
|
} |