-
-
Save kiettisak-angkanawin/757b67782c56b0562ae4b17c0007c852 to your computer and use it in GitHub Desktop.
Groovy script to delete all jenkins jobs that match a regex pattern
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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