github
github copied to clipboard
The github API for Haskell
Forks have a `parent` and `source` field: https://developer.github.com/v3/repos/#get Not having the 'parent' makes it basically impossible to get information from the upstream repository. [Repo](https://hackage.haskell.org/package/github-0.24/docs/GitHub-Data-Repos.html) should probably have that as a...
The GitHub API allows fetching labels for a PR through the issues endpoint (e.g. https://api.github.com/repos/phadej/github/issues/355/labels), but this is not available through this package since `labelsOnIssueR` requires an `Id Issue`.
GitHub Enterprise supports additional features which don't seem to be documented in the public API. As a concrete example, there is an `ldap_dn` field for teams which allows their membership...
This one is missing: * https://developer.github.com/v3/pulls/reviews/#create-a-pull-request-review
See https://developer.github.com/v3/repos/statuses/ This is used in pull requests. I need it to make http://git-critique.herokuapp.com/hello/pulls more useful.
I've been throwing stuff together w/ wreq for my latest project but I'd love to use this library instead. https://developer.github.com/v3/repos/traffic/
https://github.com/phadej/github/blob/master/samples/Pulls/ListPulls.hs does not compile with the latest version of the library
I'm going round in circles when trying to create a new repo: Suppose I'm given the repo name "test" ```haskell myRepoName :: String myRepoName = "test" ``` Then I'd like...
I'm having a hard time understanding how to use this module, as the documentation and the samples seems to be out of date. Judging from [GitHub's documentation][doc], you can request...
I'm exposing a github webhook in a [web service](https://github.com/iphydf/github-tools/blob/c123ddbcdf37c8f4732935ab7097e74c92dc885f/web/TokTok/Webhooks.hs#L57-L61) I'm working on. I'm using the [github-webhook-handler](https://hackage.haskell.org/package/github-webhook-handler), which uses [github-types](https://hackage.haskell.org/package/github-types) package, which is incomplete (it has 1 field implemented per event)...