Jérémie Bresson

Results 204 comments of Jérémie Bresson
trafficstars

I made some additional changes to the branch [`pr_935`](https://github.com/jmini/gitlab4j-api/tree/pr_935) in my fork, but I don't have something working yet.

I was able to start the gitlab docker image from a jbang script [`RunGitlab.java`](https://github.com/jmini/gitlab-experiments/blob/main/testcontainers/RunGitlab.java) including the creation of the user token with API scope for the root user. This looks...

I think this can be done. You need to create a `AcceptMergeRequestParams` and set `withMergeWhenPipelineSucceeds(true)` and then on the `MergeRequestApi` instance, call `acceptMergeRequest(project, mr, param)` A real world example: https://github.com/unblu/ucascade/blob/7e8f23adf3246c2f0ce510d81903b3aeea78797f/src/main/java/service/GitLabService.java#L372,383...

Not sure which enum `MergeRequestStatus` you have in mind. The problem is the lack of specification for the objects returned by the GitLab API. They are not really specifying what...

The method in question: https://github.com/gitlab4j/gitlab4j-api/blob/2f584fb781a7492013c26fa11df19fea7574cf47/src/main/java/org/gitlab4j/api/JobApi.java#L131-L145 When you have a failing case with this lib, can you use an other tool (`curl` or `postman`) and redo the same HTTP call: ```http...

In our code: https://github.com/gitlab4j/gitlab4j-api/blob/7763e676f87da99e7cff7cd74556a69fac8ac97e/src/main/java/org/gitlab4j/api/EnvironmentsApi.java#L113-L130 I am not familiar with environments in GitLab but they seems to have a name. This would mean the name can't be updated ? Looking closer...

Yes feel free to create a PR for that

I am not familiar with `socks5`. We are just using [jersey](https://github.com/eclipse-ee4j/jersey/) for the HTTP calls. This looks interesting: https://github.com/heishiroh/jersey-client-socks-sample I am happy to have contributions (documentation, code changes) in order...

> I used the org.gitlab4j:gitlab4j-api:4.17.0 and it works properly This probably means that the Jersey library that is used here does not fit with the IDEA Plugin tech stack (I...

The confidential note hook is barely documented on: https://docs.gitlab.com/ee/user/project/integrations/webhook_events.html#comment-events It seems that this would be an event similar to `NoteEvent` with a different `X_GITLAB_EVENT` value. Maybe instead of duplicating `NoteEvent`...