Hello, 

Having the following code: 

pipeline {
    agent any
    stages {
        stage('Example Build') {
            steps {
                echo 'Hello World'
            }
        }
        stage('Example Deploy') {
            when {
                branch 'production'
            }
            steps {
                echo 'Deploying'
            }
        }
    }
}


If condition is not run it displays:

*"Stage "Example Deploy" skipped due to when conditional"*

Is there any way tu customize this message?

Thank you.


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/bb6ac553-9f8d-43ed-8510-67afd9fc5047%40googlegroups.com.

Reply via email to