Payload schema
branchstring
The imported branch.
commitOidstring
The head Artifacts now holds — the CURRENT GitHub head, which may be newer than the requested one (out-of-order deliveries are satisfied by any newer head).
requestIdstring
The settled obligation's identity.
requestedCommitOidstring
The head the original 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 imported branch."
},
"commitOid": {
"type": "string",
"minLength": 1,
"description": "The head Artifacts now holds — the CURRENT GitHub head, which may be newer than the requested one (out-of-order deliveries are satisfied by any newer head)."
},
"requestId": {
"type": "string",
"minLength": 1,
"description": "The settled obligation's identity."
},
"requestedCommitOid": {
"type": "string",
"minLength": 1,
"description": "The head the original push delivery announced."
}
},
"required": [
"branch",
"commitOid",
"requestId",
"requestedCommitOid"
]
}