gitlab4j-api icon indicating copy to clipboard operation
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

Results 215 gitlab4j-api issues
Sort by recently updated
recently updated
newest added

Dear big man: How to Delete authentication identity from user by gitlab4j-api? DELETE /users/:id/identities/:provider Parameters: id (required) - The ID of the user provider (required) - External provider name

When creating a new tag with a release note, I get ``` Caused by: org.gitlab4j.api.GitLabApiException: 500 Internal Server Error at org.gitlab4j.api.AbstractApi.validate(AbstractApi.java:633) at org.gitlab4j.api.AbstractApi.post(AbstractApi.java:286) at org.gitlab4j.api.TagsApi.createTag(TagsApi.java:239) ``` I looked at the...

`RunnersApi.getRunners()` is missing the ability to search based on tag_list. Either a new getRunners() method could be added with the additional parameter, or a new, more generic method could be...

Hi: I've created the project through the API Now I want to initialize the local project to gitlab through API Want to implement the following command cd existing_folder git init...

``` public Branch getBranch(Object projectIdOrPath, String branchName) throws GitLabApiException { Response response = get(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "repository", "branches", urlEncode(branchName)); return (response.readEntity(Branch.class)); } ``` I want to use the path...

As per https://docs.gitlab.com/ee/api/branches.html, the default branch is denoted as a boolean. It would be great to have default branch represented in the class Branch object OR a "getDefaultBranch()" method. If...

Reading and writing Jenkins CI settings are missing from the [ServicesAPI](https://github.com/gitlab4j/gitlab4j-api/blob/master/src/main/java/org/gitlab4j/api/ServicesApi.java).

like **Get file from repository** of **Repository files** . but I provid multi file path (not only one), and get the content of these。 if not, ### how can I...

Shouldn't the below code returning List ? Happy to contribute if the below isn't the intended behavior. There are several other epicIssue methods return epics. [List getEpicIssues](https://github.com/gitlab4j/gitlab4j-api/blob/master/src/main/java/org/gitlab4j/api/EpicsApi.java#:~:text=public%20List%3CEpic%3E%20getEpicIssues(Object%20groupIdOrPath%2C%20Integer%20epicIid%2C%20int%20page%2C%20int%20perPage)%20throws%20GitLabApiException%20%7B) [public Pager getEpicIssues](https://github.com/gitlab4j/gitlab4j-api/blob/master/src/main/java/org/gitlab4j/api/EpicsApi.java#:~:text=public%20Pager%3CEpic%3E%20getEpicIssues(Object%20groupIdOrPath%2C%20Integer%20epicIid%2C%20int%20itemsPerPage)%20throws%20GitLabApiException)....

In the file package org.gitlab4j.api.RepositoryFileApi, lines 423 to 435 contain references to MediaType.MEDIA_TYPE_WILDCARD which is a simple "*": ``` public InputStream getRawFile(Object projectIdOrPath, String ref, String filepath) throws GitLabApiException {...

bug