gitlab4j-api
gitlab4j-api copied to clipboard
GitLab4J API (gitlab4j-api) provides a full featured Java client library for working with GitLab repositories via the GitLab REST API
It would be nice to get the information about queued_duration, which is part of the json from the job-api.
Unfortunately in my case when calling `getJobApi().getJobsForPipeline()` gitlab returns more than 100 results. Paging support for this call would be great. I don't think there's any other way of calling...
The current implementation of GitLabApiClient does not provide a simple and easy way to configure/customize HTTP client. So to fix this problem, we need to make the HTTP client pluggable....
This ticket ask for a feature enhancement in the use of the API. My understanding is that almost all calls in the library are null-safe. It would be great to...
Hello, I was working with your very useful library, using the Deployments API, and I noticed that some of the functions and methods appear to be out of date with...
First, thanks for your great work on this library. It's really helpful and easy to use to manage our Gitlab project ;) There is an issue with Pipeline Event, as...
Hi, I'm trying to get description of a gitlab repository: ``` GitLabApi gitLabApi = new GitLabApi("XXXXX", "XXXXX"); Project project = gitLabApi.getProjectApi().getProject(99999); System.out.println(project.getDescription()); ``` And I'm getting the following error: ```...
Hello dear maintainers, it would be nice to have a **new method for issue locking** inside the `IssuesApi` class. Actually it could be implemented in two ways: 1) This implemention...
I have to work with a private gitlab server with basic authentication turned on. Tested with a local gitlab installation. I'm not sure if I should add test code for...
I need a way to get the test report for a given pipeline. Maybe adding a method in PipelineAPI called `getPipelineTestReport` would suffice. I'm also willing to work on this...