test.repo/Jenkinsfile
2025-10-13 14:58:18 -03:00

10 lines
No EOL
164 B
Groovy

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