test.repo/Jenkinsfile

13 lines
214 B
Text
Raw Normal View History

2025-10-13 14:58:18 -03:00
pipeline {
agent any
2025-10-13 15:52:34 -03:00
// triggers {
// pollSCM('')
// }
2025-10-13 14:58:18 -03:00
stages {
stage('Build') {
steps {
echo "🔨 Building branch: main"
}
}
}
}