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