jcabi-github icon indicating copy to clipboard operation
jcabi-github copied to clipboard

Java Object-Oriented Wrapper of GitHub API, with a fake implementation of the entire GitHub API (for your tests)

Results 165 jcabi-github issues
Sort by recently updated
recently updated
newest added

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...

scope

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...

bug
enhancement
30 mins
DEV
help wanted
good first issue

Github API returns a repo as Json objects of format: ``` { id:"asdasda", ... owner: { login: "amihaiemil", ... } ... } ``` Thus, wherever I use a `Repo` object...

bug
30 mins
DEV
help wanted
good first issue

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]...

bug
30 mins
DEV
help wanted

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...

bug
30 mins
DEV
help wanted

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...

bug
enhancement
30 mins
DEV
help wanted

Is there any way to get user followers and user following?

bug
30 mins
DEV
help wanted
good first issue

`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`

bug
30 mins
DEV
help wanted
good first issue

`MkReference` objects are not added to the backing storage.

bug
30 mins
DEV
help wanted
good first issue