pipeline { agent any // triggers { // pollSCM('') // } stages { stage('Build') { steps { echo "🔨 Building branch: staging" } } } }