We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a32dd87 + 42f5da0 commit d471e57Copy full SHA for d471e57
buildenv/jenkins/common/pipeline-functions.groovy
@@ -726,13 +726,13 @@ def setup_pull_request_single_comment(parsedComment) {
726
case ~/.*openj9-openjdk-jdk.*/:
727
// <org>/openj9-openjdk-jdk<version>(-zos)?
728
def tmp_version = ghprbGhRepository.substring(ghprbGhRepository.indexOf('-jdk')+4)
729
- if ("${tmp_version}" == "") {
730
- tmp_version = 'next'
731
- }
732
if (tmp_version.contains('-')) {
733
// Strip off '-zos'
734
tmp_version = tmp_version.substring(0, tmp_version.indexOf('-'))
735
}
+ if ("${tmp_version}" == "") {
+ tmp_version = 'next'
+ }
736
RELEASES.add(tmp_version)
737
minCommentSize = 3
738
break
0 commit comments