v69

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-08-051,22096912.3 MB
pulls

Get the result of an asynchronous merge

Fetches the current result of an asynchronous merge request, identified by the UUID that was returned when the merge was requested.

While the merge is still queued, the response includes the UUID, merge method, and expected head SHA of the request. Once the merge has completed, the response reports whether it was merged, including the merge commit OID on success or a message describing why it could not be merged on failure.

The result of an asynchronous merge request is retained for 24 hours after its most recent update. After this window the request expires and this endpoint returns a 404 response for its UUID.

get/repos/{owner}/{repo}/pulls/{pull_number}/merge-async/{uuid}

Path parameters

ownerstring required

The account owner of the repository. The name is not case sensitive.

repostring required

The name of the repository without the .git extension. The name is not case sensitive.

pull_numberinteger required

The number that identifies the pull request.

uuidstring required

The UUID of the asynchronous merge request, as returned when the merge was requested.

Response

the current result of the asynchronous merge request

status'pending' | 'merged' | 'enqueued' | 'failed' required