Payload schema
branchstring
The branch to import.
requestIdstring
The obligation's identity: the coordinates (path:offset) of the webhook event that opened it — no synthetic ids.
requestedCommitOidstring
The GitHub head the push delivery announced.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"branch": {
"type": "string",
"minLength": 1,
"description": "The branch to import."
},
"requestId": {
"type": "string",
"minLength": 1,
"description": "The obligation's identity: the coordinates (path:offset) of the webhook event that opened it — no synthetic ids."
},
"requestedCommitOid": {
"type": "string",
"minLength": 1,
"description": "The GitHub head the push delivery announced."
}
},
"required": [
"branch",
"requestId",
"requestedCommitOid"
]
}