test.repo/Jenkinsfile
Matias Pou 06f9ffcfbd
All checks were successful
multibranch.test/pipeline/head This commit looks good
push test
2025-10-13 15:52:34 -03:00

13 lines
No EOL
214 B
Groovy

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