- Affected version
- 2.2.5 and earlier
The previously used beta API has become stable and declared as v3. Using beta will return unexpected results that are not in sync with the API
docs.github.com

Resources in the REST API - GitHub Docs
Learn how to navigate the resources provided by the GitHub API.
PHP:
/**
* Required for GitHub API calls.
*
* @return array
*/
protected function getExtraApiHeaders()
{
return array('Accept' => 'application/vnd.github.beta+json');
}