Safe Haskell | None |
---|---|
Language | Haskell98 |
The milestones API as described on http://developer.github.com/v3/issues/milestones/.
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
module Github.Data