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

Safe HaskellNone
LanguageHaskell98

Github.Issues.Events

Description

The Github issue events API, which is described on http://developer.github.com/v3/issues/events/

Synopsis

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