Safe Haskell | None |
---|---|
Language | Haskell98 |
The Github issue events API, which is described on http://developer.github.com/v3/issues/events/
Documentation
eventsForIssue :: String -> String -> Int -> IO (Either Error [Event]) Source
All events that have happened on an issue.
eventsForIssue "thoughtbot" "paperclip" 49
eventsForRepo :: String -> String -> IO (Either Error [Event]) Source
All the events for all issues in a repo.
eventsForRepo "thoughtbot" "paperclip"
event :: String -> String -> Int -> IO (Either Error Event) Source
Details on a specific event, by the event's ID.
event "thoughtbot" "paperclip" 5335772
module Github.Data