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

Safe HaskellNone

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"

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

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

 milestone "thoughtbot" "paperclip" 2