test.repo/Jenkinsfile
Matias Pou 09a5eba2f0
All checks were successful
multibranch.test/pipeline/head This commit looks good
test push
2025-10-13 15:53:50 -03:00

14 lines
No EOL
222 B
Groovy

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