github-api
github-api copied to clipboard
Java API for GitHub
Hi, I am using the library, thank you very much! Works great. I am using it mostly to manage issues, and I need a method to completely delete an issue,...
**Describe the bug** When considering a file with size >= 1MB, the library fails with `Unrecognized encoding: none` in org.kohsuke.github.GHContent.read() **To Reproduce** Push a file > 1MB, and try `GHRepository.getContent().read()`...
**Description** We are using the version 1.307 and we call the createCommitStatus like below. ``` GHRepository repository = gitHub.getRepository( SLASH_JOINER.join(request.getOrg(), request.getRepo()) ); String headSha = repository .getPullRequest(request.getPullNumber()) .getHead() .getSha(); GHCommitStatus...
# Description Include template repository in detailed representations. Fixes #1549 https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#list-repository-teams # Before submitting a PR: - [x] Changes must not break binary backwards compatibility. If you are unclear on...
Hi, I've got a situation like this: 1. My app does listen to incoming webhooks, I parse the payload with an instance of a client authenticated **as an app** with...
owners are always returned as GHUsers instead of GHOrganizations or GHUsers. Many github api calls return users and organisations alike and the distinction is made based on the type field....
#1463 allowed you to list PR review comments with `line`. It did not allow you to create a comment using `line`. This is much easier than using position as it...
Feature Request: GET /orgs/{org}/installations https://docs.github.com/en/rest/orgs/orgs?apiVersion=2022-11-28#list-app-installations-for-an-organization Requesting this api for an Organization object
Hi, I need to obtain the Zone of the commit author (or the timestamp String so I can parse it later). When accessing the date through GHCommit::getAuthoredDate() then it's being...
Hi, I noticed the following documentation on `GitHub#parseEventPayload`: ``` [...] Unfortunately, hook script payloads aren't self-descriptive, so you need to know the type of payload you are expecting. ``` As...