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

Safe HaskellSafe-Infered

Github.Repos

Description

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

Synopsis

Documentation

userRepos :: String -> RepoPublicity -> IO (Either Error [Repo])Source

The repos for a user, by their login. Can be restricted to just repos they own, are a member of, or publicize. Private repos are currently not supported.

 userRepos "mike-burns" All

organizationRepos :: String -> IO (Either Error [Repo])Source

The repos for an organization, by the organization name.

 organizationRepos "thoughtbot"

userRepo :: String -> String -> IO (Either Error Repo)Source

Details on a specific repo, given the owner and repo name.

 userRepo "mike-burns" "github"

contributors :: String -> String -> IO (Either Error [Contributor])Source

The contributors to a repo, given the owner and repo name.

 contributors "thoughtbot" "paperclip"

contributorsWithAnonymous :: String -> String -> IO (Either Error [Contributor])Source

The contributors to a repo, including anonymous contributors (such as deleted users or git commits with unknown email addresses), given the owner and repo name.

 contributorsWithAnonymous "thoughtbot" "paperclip"

languagesFor :: String -> String -> IO (Either Error [Language])Source

The programming languages used in a repo along with the number of characters written in that language. Takes the repo owner and name.

 languagesFor "mike-burns" "ohlaunch"

tagsFor :: String -> String -> IO (Either Error [Tag])Source

The git tags on a repo, given the repo owner and name.

 tagsFor "thoughtbot" "paperclip"

branchesFor :: String -> String -> IO (Either Error [Branch])Source

The git branches on a repo, given the repo owner and name.

 branchesFor "thoughtbot" "paperclip"

data RepoPublicity Source

Filter the list of the user's repos using any of these constructors.

Constructors

All

All repos accessible to the user.

Owner

Only repos owned by the user.

Public

Only public repos.

Private

Only private repos.

Member

Only repos to which the user is a member but not an owner.