isCurrentLanguage
will not work when the Locale Plugin overrides language selection by the user.
node {
stage('input') {
input (
message: "Should we continue?",
ok: "yes",
parameters: [
string(
name: "MYKEY1",
defaultValue: "myvalue",
description: "my input test",
trim: true
)
]
)
}
stage('print') {
echo "${params.MYKEY1}"
}
}
Hi,
I'm using wirteYaml pipeline utility ref: https://www.jenkins.io/doc/pipeline/steps/pipeline-utility-steps/#writeyaml-write-a-yaml-from-an-object-or-objects
I'm facing very strange issue, when i write the object it put the aliases and anchors
charts:
how to avoid this anchors and aliases
Any help would be greatly appreciated