Currently there are 3 types of "filters" you can provide to your runs.
tags which are set on the output.xml level and with the --outputfolder or --output parameter.
projectversion which you set with --projectversion also on the output level but with a custom parameter.
customfilters which you set with --customfilters and these are also on the output level but again with another custom parameter.
The "nicest" implementation is the customfilters one since that one scales infinitely and can also handle filters like tags or versions that are now separately added. In the future it would be nice to make this all into a single CLI option which is customfilters so that everything works the same.
Design decisions when implementing:
Currently there are 3 types of "filters" you can provide to your runs.
tagswhich are set on theoutput.xmllevel and with the--outputfolderor--outputparameter.projectversionwhich you set with--projectversionalso on the output level but with a custom parameter.customfilterswhich you set with--customfiltersand these are also on the output level but again with another custom parameter.The "nicest" implementation is the customfilters one since that one scales infinitely and can also handle filters like
tagsorversionsthat are now separately added. In the future it would be nice to make this all into a single CLI option which iscustomfiltersso that everything works the same.Design decisions when implementing: