1. when 을 통한 SKIPhttps://www.jenkins.io/doc/book/pipeline/syntax/#whenhttps://stackoverflow.com/questions/56148230/how-to-mark-jenkins-job-stage-as-skipped-for-scripted-pipeline BRANCH_NAME = 'branch_name'pipeline { agent any stages { stage('stage1') { when { expression { BRANCH_NAME == "master" } } steps { echo "Perfo..