pipelineJob('Cloud/Automation/repo-sync') { description("Sync repo") definition { cpsScm { scm { git { remote { url("${JENKINS_GIT_REPOSITORY_URL}/DevOps/jenkins-pipelines.git") credentials("${JENKINS_GIT_CREDENTIALS_HTTP}") } branch('master') } } scriptPath('pipelines/Cloud/Automation/repo-sync.groovy') } } properties { disableConcurrentBuilds() pipelineTriggers { triggers { cron { spec('H * * * *') } } } } }