License | BSD-3-Clause |
---|---|
Maintainer | Oleg Grenrus <oleg.grenrus@iki.fi> |
Safe Haskell | None |
Language | Haskell2010 |
Hot forking action, as described at http://developer.github.com/v3/repos/forks/.
Documentation
forksFor :: Name Owner -> Name Repo -> IO (Either Error (Vector Repo)) Source #
All the repos that are forked off the given repo.
forksFor "thoughtbot" "paperclip"
forksFor' :: Maybe Auth -> Name Owner -> Name Repo -> IO (Either Error (Vector Repo)) Source #
All the repos that are forked off the given repo. | With authentication
forksFor' (Just (User (user, password))) "thoughtbot" "paperclip"
forksForR :: Name Owner -> Name Repo -> FetchCount -> Request k (Vector Repo) Source #
List forks. See https://developer.github.com/v3/repos/forks/#list-forks
module GitHub.Data