Bài này cấu hình cho jenkins liên tục triggers git. Nếu commit thay đổi thì thực hiện action build.
Scripted Pipeline như sau:
node {
properties([
pipelineTriggers([
pollSCM('* * * * *')
])
])
stage('Build'){
checkout([
$class: 'GitSCM',
branches: [[name: "origin/master"]],
userRemoteConfigs: [[
url: 'https://github.com/mrnim94/scripted-pollSCM.git'
]]
])
}
}