-
Improvement
-
Resolution: Unresolved
-
Critical
-
Jenkins ver. 2.220
Webhook triggering job with no SCM 1.1.0
Hello,
I have pipeline like this but when i push something i can see
Webhook triggering job with no SCM
in jenkins logs any hint ?
pipeline {
agent { label '' }
triggers {
BitbucketWebhookTriggerImpl()
}
parameters {
gitParameter branch: '',
branchFilter: 'origin./(.)',
defaultValue: 'master',
description: 'Select branch name (default master)',
listSize: '5',
name: 'BRANCH',
quickFilterEnabled: true,
selectedValue: 'NONE',
sortMode: 'DESCENDING_SMART',
tagFilter: '*',
type: 'PT_BRANCH_TAG',
useRepository: ''
}
stages {
stage ('SCM') {
steps {
checkout(
changelog: true,
poll: false,
scm: [$class: 'BitbucketSCM', branches: [[name: "*/${BRANCH{color:#569cd6}}"]],
credentialsId: '',
id: '',
mirrorName: '',
projectName: '',
repositoryName: '',
serverId: ''
]
)
}
}
stage('Test') {
steps {
sh """
ls -la
"""
}
}
}
post {
cleanup {
cleanWs()
}
}
{color:#d4d4d4}}