Hi,
I am using Jenkins pipeline script with reviewbot plugin.
My pipeline job is parameterized with 'Reviewboard url'. when i access this in the pipeline script, it is NULL always. how do i get the updated value.
properties([
parameters([
[
$class: 'ReviewboardParameterDefinition'
]
])
])
node('cloud') {
stage ('Build'){
echo "${params.review.url}"
}
}
Any help is really appreciated.
Thanks,