Created
August 5, 2019 01:17
-
-
Save jghankins/f21566f1c908e37fac5abaaa44feb20b to your computer and use it in GitHub Desktop.
Delete Jenkins Jobs
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
| def jobName = "copy_folder" | |
| def job = Jenkins.instance.getItem(jobName) | |
| job.getBuilds().each { it.delete() } | |
| job.nextBuildNumber = 1 | |
| job.save() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment