From 1dd18196d323c0d5c3c2e0d917998b727e22a72b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Bresson?= Date: Sun, 21 Sep 2025 14:12:34 +0200 Subject: [PATCH] Update gitlab-api version to 5.8.1-106.vef1de800710e --- pom.xml | 3 ++- .../helpers/GitLabPipelineStatusNotifier.java | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8a5e4e4e..1ef01d1f 100644 --- a/pom.xml +++ b/pom.xml @@ -32,7 +32,7 @@ 999999-SNAPSHOT - 2.479 + 2.492 ${jenkins.baseline}.3 jenkinsci/${project.artifactId}-plugin false @@ -61,6 +61,7 @@ io.jenkins.plugins gitlab-api + 5.8.1-106.vef1de800710e org.jenkins-ci.plugins diff --git a/src/main/java/io/jenkins/plugins/gitlabbranchsource/helpers/GitLabPipelineStatusNotifier.java b/src/main/java/io/jenkins/plugins/gitlabbranchsource/helpers/GitLabPipelineStatusNotifier.java index 57638522..b8154a30 100644 --- a/src/main/java/io/jenkins/plugins/gitlabbranchsource/helpers/GitLabPipelineStatusNotifier.java +++ b/src/main/java/io/jenkins/plugins/gitlabbranchsource/helpers/GitLabPipelineStatusNotifier.java @@ -228,7 +228,9 @@ private static void logComment(Run build, TaskListener listener) { .createMergeRequestNote( source.getProjectPath(), Long.valueOf(head.getId()), - symbol + buildName + note + suffix); + symbol + buildName + note + suffix, + null, + false); } else if (revision instanceof GitTagSCMRevision) { hash = ((GitTagSCMRevision) revision).getHash(); gitLabApi