LOL. I ran across my own post from 5 years ago. I can answer it myself now:
from jenkinsapi.jenkins import Jenkins
import jenkinsapi
J = Jenkins('http://myjenkins:8080/', username='user', password='password')
job = J['my-job']
b = job.get_build(383)
b.get_description()
--
Sent from: http://jen
I am using "Multiple SCM" plugin and I have 2 git repos that are being pulled
into my workspace:
g...@bitbucket.org:foo/a --> goes to directory $WORKSPACE/a
g...@bitbucket.org:foo/b --> goes to directory $WORKSPACE/b
I want to filter *all* commits to foo/a so that the job does not start.
Easy eno