gradle-jenkins-jobdsl-plugin
gradle-jenkins-jobdsl-plugin copied to clipboard
Add more filter options
Currently jobs to process can only be filtered with a regex matching the full job name. Add more filter options:
- Filter by folder, to only deploy jobs for a specific folder.
- Filter by filename, to only deploy jobs from one file.
Filter by folder, to only deploy jobs for a specific folder.
Can't this already be done by --filter "foldername/.*"
(as job names may not contain /
)?
The problem with that is that it wouldn't create the folder so you would have to use something like --filter "foldername(/.*)
which gets messy with nested folders.