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

Safe HaskellNone
LanguageHaskell98

Github.Issues.Milestones

Description

The milestones API as described on http://developer.github.com/v3/issues/milestones/.

Synopsis

Documentation

milestones :: String -> String -> IO (Either Error [Milestone]) Source

All milestones in the repo.

milestones "thoughtbot" "paperclip"

milestones' :: Maybe GithubAuth -> String -> String -> IO (Either Error [Milestone]) Source

All milestones in the repo, using authentication.

milestones' (GithubUser (user, password)) "thoughtbot" "paperclip"

milestone :: String -> String -> Int -> IO (Either Error Milestone) Source

Details on a specific milestone, given it's milestone number.

milestone "thoughtbot" "paperclip" 2