diff --git a/Jenkinsfile b/Jenkinsfile index a86ad6b1c..6334d584b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,8 @@ myDeliveryPipeline(properties([ parameters([ - string(name: 'BRANCH', defaultValue: 'master', description: 'Branch to build') - choice(name: 'RUN_TEST', choices: ['yes', 'no'], description: 'Run test while build') + string(name: 'BRANCH', defaultValue: 'master', description: 'Branch to build'), + choice(name: 'RUN_TEST', choices: ['yes', 'no'], description: 'Run test while build'), + booleanParam(defaultValue: true, description: 'MAIL_TRIGGER', name: 'mail to be triggred') ]) ]))