Hi, I'm setting up some notifications on slack for whenever a story lands in a specific status. I've solved that part.
The issue is that I only want to see stories if they have either Red or Green components assigned to them and want to filter out any that don't have either of them..
When I try to add a new line in the filter it highlights it as red. I can't put AND or OR. Any ideas? I can get a singular component filter to work at a time but not two, this is what I need:
FOR ISSUES THAT MATCH THIS FILTER
"Component[Red]"
`"Component[Green]"
Hello @Lucas Fyffe ,
You can use the 'in' keyword to do this. Something like
Component in ('Red', 'Green')
Hello @Lucas Fyffe ,
You can use the in keyword for this.
Something like :
Component in ('Red', 'Green')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.