github icon indicating copy to clipboard operation
github copied to clipboard

The github API for Haskell

Results 44 github issues
Sort by recently updated
recently updated
newest added

I'm having troubles performing a request with this simple example from the github doc: ``` https://api.github.com/search/repositories?q=tetris+language:assembly&sort=stars&order=desc ``` More precisely, I cannot figure out how to format the search query. The...

pr welcome

Failures: spec/GitHub/ActivitySpec.hs:41: 1) GitHub.Activity.myStarredR works predicate failed on: [] Randomized with seed 733830682 Finished in 100.9232 seconds 36 examples, 1 failure This is with master.

Current GitHub.Data.Event data structure ( https://developer.github.com/v3/activity/events/ ) is partially implemented. I would need some more data for these Events: - Event Organisation (if any) - Event Repository - Event Type...

pr welcome

https://developer.github.com/v3/pulls/#link-relations vs. https://hackage.haskell.org/package/github-0.15.0/docs/GitHub-Data-PullRequests.html#t:PullRequestLinks

Hello there, First of all, thanks for maintaining this library, please accept this humble lovely animated llama as a thank you gift ![FunnyLlama](https://media.giphy.com/media/1081l2F7uGjkK4/giphy.gif) I would need this endpoint: https://developer.github.com/v3/activity/events/#list-public-events-performed-by-a-user I'll...

Each response from the underlying JSON API contains rate limiting information: how many requests we've made, and how many remain. It would be good to use this information. Some proposals:...

feature
API change

I'd like to implement a caching GitHub API server (see https://github.com/TokTok/github-tools/issues/43) that is kept up to date via webhooks. This requires the GitHub types to be convertible back to JSON...

question

The `PullRequest` type doesn't have a field for the `auto_merge` field in API responses. This field is [documented](https://docs.github.com/en/rest/pulls/pulls?apiVersion=2022-11-28#get-a-pull-request) in both the example response and the response schema.