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)
Seems I can use `Content#json` to detect whether it is folder because `Content#json` will throw exception when it is a folder. But it doesn't seems a good api for that,...
The puzzle `1063-c98e5ecc` from #1063 has to be resolved: https://github.com/jcabi/jcabi-github/blob/36b7b8e022c257ded6cd67b8a7cface4c5ec77f8/src/main/java/com/jcabi/github/mock/MkIssueEvents.java#L135-L141 The puzzle was created by @yegor256 on 05-Jul-22. Estimate: 30 minutes, role: DEV. If you have any technical questions, don't...
The puzzle `1126-bb836510` from #1126 has to be resolved: https://github.com/jcabi/jcabi-github/blob/36b7b8e022c257ded6cd67b8a7cface4c5ec77f8/src/main/java/com/jcabi/github/RtStatuses.java#L117-L117 The puzzle was created by Yegor Bugayenko on 05-Jul-22. Estimate: 30 minutes, role: DEV. If you have any technical questions,...
The puzzle `920-4390f200` from #920 has to be resolved: https://github.com/jcabi/jcabi-github/blob/36b7b8e022c257ded6cd67b8a7cface4c5ec77f8/src/test/java/com/jcabi/github/RtNotificationsTest.java#L47-L49 The puzzle was created by Yegor Bugayenko on 05-Jul-22. role: DEV. If you have any technical questions, don't ask me,...
The puzzle `975-75395faa` from #975 has to be resolved: https://github.com/jcabi/jcabi-github/blob/36b7b8e022c257ded6cd67b8a7cface4c5ec77f8/src/test/java/com/jcabi/github/OAuthScope.java#L41-L49 The puzzle was created by Yegor Bugayenko on 05-Jul-22. Estimate: 30 minutes, role: DEV. If you have any technical questions,...
The puzzle `1462-97ade784` from #1462 has to be resolved: https://github.com/jcabi/jcabi-github/blob/36b7b8e022c257ded6cd67b8a7cface4c5ec77f8/src/main/java/com/jcabi/github/Issue.java#L61-L66 The puzzle was created by @yegor256 on 05-Jul-22. Estimate: 30 minutes, role: DEV. If you have any technical questions, don't...
The puzzle `1085-95e4d268` from #1085 has to be resolved: https://github.com/jcabi/jcabi-github/blob/36b7b8e022c257ded6cd67b8a7cface4c5ec77f8/src/main/java/com/jcabi/github/mock/MkBranch.java#L77-L79 The puzzle was created by @yegor256 on 05-Jul-22. Estimate: 30 minutes, role: DEV. If you have any technical questions, don't...
``` new RtGithub() .repos() .get(new Coordinates.Simple("jcabi/jcabi-github")) .commits() .get("05dd4e1580eb22116c02e5322eaab0700b1e8af1") .repo() .contents() .get("README.md") ``` This example fetches content from `master`, but it should from the selected commit
I use jcabi-github 1.1.2. I want to get (fetch) all events for an issue in my repo. I use code similar to this: ```java Issue issue = repo.issues().get(3131); for (Event...
version 1.1.2 issues.get is easy to use code: ``` Github github = new RtGithub("my token"); Repo repo = github.repos().get( new Coordinates.Simple("my name","my repo")); Issues issues = repo.issues(); int a =...