diff --git a/lib/Github/Api/Repo.php b/lib/Github/Api/Repo.php index 37cb8aac794..3a3636365d0 100644 --- a/lib/Github/Api/Repo.php +++ b/lib/Github/Api/Repo.php @@ -311,6 +311,18 @@ public function commits() return new Commits($this->client); } + /** + * Manage checks on a repository. + * + * @link https://developer.github.com/v3/checks/ + * + * @return Checks + */ + public function checks() + { + return new Checks($this->client); + } + /** * Manage the content of a repository. *