github-0.14.0: Access to the Github API, v3.

Safe HaskellNone
LanguageHaskell2010

Github.Repos.Forks

Description

Hot forking action, as described at http://developer.github.com/v3/repos/forks/.

Synopsis

Documentation

forksFor :: Name GithubOwner -> Name Repo -> IO (Either Error (Vector Repo)) Source

All the repos that are forked off the given repo.

forksFor "thoughtbot" "paperclip"

forksFor' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> IO (Either Error (Vector Repo)) Source

All the repos that are forked off the given repo. | With authentication

forksFor' (Just (GithubUser (user, password))) "thoughtbot" "paperclip"