jcabi-github
jcabi-github copied to clipboard
Java Object-Oriented Wrapper of GitHub API, with a fake implementation of the entire GitHub API (for your tests)
Is there any support for PR reviews? https://developer.github.com/v3/pulls/reviews/
Code says: ``` public String message() throws IOException { return this.jsn.json().getJsonObject("commit").getString("message"); } ``` But the truth is that the message is not part of the commit element. I'm able to...
GitHub allows retrieval of commit status (see [Get the combined Status for a specific Ref](https://developer.github.com/v3/repos/statuses/#list-statuses-for-a-specific-refc)) - e.g. one could see when a Travis build fails. I couldn't find this API...
Github API returns a repo as Json objects of format: ``` { id:"asdasda", ... owner: { login: "amihaiemil", ... } ... } ``` Thus, wherever I use a `Repo` object...
Travis build is failing and it looks like the API limit is exceeded for Github API invocations. https://travis-ci.org/jcabi/jcabi-github/jobs/83011585 I could see the following information in the log as well. `[INFO]...
RtIssueITCase#talksInGithubProject will fail with CCE, if User has json name property but the name is null e.g "name":null this code (in User.java) ``` @NotNull(message = "Name is never NULL") public...
I would expect that calling something like: ``` java User privateUser = github.users().get(name); Smart user = new Smart(privateUser); user.login(); user.avatarUrl().toString(); user.type(); ``` will call the user resource once, and then...
Is there any way to get user followers and user following?
`MkCommit` objects are missing several properties compared to https://developer.github.com/v3/git/commits/. The ones I'm missing are `created_at` and `updated_at`
`MkReference` objects are not added to the backing storage.