Skip to content

Instantly share code, notes, and snippets.

@msoranno
Created September 19, 2019 11:37
Show Gist options
  • Save msoranno/24a86031538ec4f69bf8b4fed866789e to your computer and use it in GitHub Desktop.
Save msoranno/24a86031538ec4f69bf8b4fed866789e to your computer and use it in GitHub Desktop.
import jenkins.model.*
def matchedJobs = Jenkins.instance.items.findAll { job ->
job.name =~ /my_regex_here/
}
matchedJobs.each { job ->
println job.name
//job.delete()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment