All checks were successful
multibranch.test/pipeline/head This commit looks good
14 lines
No EOL
213 B
Groovy
14 lines
No EOL
213 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
triggers {
|
|
pollSCM('')
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo "🔨 Building branch: staging"
|
|
}
|
|
}
|
|
}
|
|
} |