github-0.30: Access to the GitHub API, v3.
Safe HaskellNone
LanguageHaskell2010

GitHub.Endpoints.Repos

Description

The Github Repos API, as documented at http://developer.github.com/v3/repos/

Synopsis

Querying repositories

repositoryR :: forall (k :: RW). Name Owner -> Name Repo -> Request k Repo Source #

Query single repository. See https://developer.github.com/v3/repos/#get

contributorsR Source #

Arguments

:: forall (k :: RW). Name Owner 
-> Name Repo 
-> Bool

Include anonymous

-> FetchCount 
-> Request k (Vector Contributor) 

Create

forkExistingRepoR :: Name Owner -> Name Repo -> Maybe (Name Owner) -> Request 'RW Repo Source #

Fork an existing repository. See https://developer.github.com/v3/repos/forks/#create-a-fork TODO: The third paramater (an optional Organisation) is not used yet.

Edit

Delete

Data