test.repo/Jenkinsfile
Matias Pou 4f9d6658e1
All checks were successful
multibranch.test/pipeline/head This commit looks good
test push
2025-10-13 15:37:07 -03:00

14 lines
No EOL
213 B
Groovy

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