Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save OrlinVasilev/0b7317759ec61bc9b8a445d554564208 to your computer and use it in GitHub Desktop.
Save OrlinVasilev/0b7317759ec61bc9b8a445d554564208 to your computer and use it in GitHub Desktop.
Groovy script to delete all jenkins jobs that match a regex pattern
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