From 2d54ab9183a7f084e7c813121a8b1b5ef6d47d92 Mon Sep 17 00:00:00 2001 From: Christian Beikov Date: Wed, 22 Oct 2025 13:54:41 +0200 Subject: [PATCH] Fix parameter value for Hibernate Search dependency update job --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7334b9018f0b..e59d6c0dc3fc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -209,7 +209,7 @@ stage('Build') { }) } executions.put('Hibernate Search Update Dependency', { - build job: '/hibernate-search-dependency-update/8.1', propagate: true, parameters: [string(name: 'UPDATE_JOB', value: 'orm7'), string(name: 'ORM_REPOSITORY', value: helper.scmSource.remoteUrl), string(name: 'ORM_PULL_REQUEST_ID', value: helper.scmSource.pullRequest.id)] + build job: '/hibernate-search-dependency-update/8.1', propagate: true, parameters: [string(name: 'UPDATE_JOB', value: 'orm7.1'), string(name: 'ORM_REPOSITORY', value: helper.scmSource.remoteUrl), string(name: 'ORM_PULL_REQUEST_ID', value: helper.scmSource.pullRequest.id)] }) parallel(executions) }