I have a Jenkins Pipeline Job that triggers when changes are pushed to a Git repository:
pipelineJob('MyJob') {
definition {
cpsScm {
scm {
git {
remote {
url('[email protected]:myorg/myproject.git')
credentials('jenkins-bitbucket')
}
branch('develop')
branch('master')
branch('release/*')
branch('hotfix/*')
}
}
}
}
properties {
triggers{
bitbucketTriggers {
repositoryPushAction(false,false,'develop')
}
}
disableConcurrentBuilds()
}
}
When the job triggers, I want to run a groovy script located in a different Git repository. Is that possible?
Yes there are two solutions,
Good luck!