test.repo/Jenkinsfile
2025-10-13 15:38:07 -03:00

13 lines
No EOL
205 B
Groovy

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