Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GuilhermeBarile/2c97642b43e21489cf2a59e96c0884b0 to your computer and use it in GitHub Desktop.
Save GuilhermeBarile/2c97642b43e21489cf2a59e96c0884b0 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