Hello,
I'm using Jira Automation. I want a way to dicard some issue based on the components they have. Let me explain :
I have 3 components : A,B,C
Some issues have the component A others B, C, and some have A and B has component.
ISS-1 : A
ISS-2 : A,B
ISS-3 : B,C
ISS-4 : C
ISS-5 : B
What I whant to acheive is to retreive the issue that have the component B. Because it's juste an example, but in my world, I have a lots of components and I only want to discard the component A and C.
I would like to know if there's a way to say I want to retreive issue that don't only have component A or C.
With the current example it should return ISS-2, ISS-3 and ISS-5 but not ISS-1 and ISS-4 because they only have the components that I want to discard.
Thanks!
Welcome to the Atlassian Community!
Try
component = B and component != A and component != C
Thanks for the answer,
This thing works when I explicitely specify component = B. But Imagine I have a list of 30 components and this list can change over time. If I need to put every component like that it will miss some of the component over time. Nobody remembers to adjust an Automation when they add a component.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What problem are you trying to solve by doing this? Knowing that may help the community to offer other suggestions. Thanks!
Until we know that...and until we see your complete automation rule details...
Perhaps try this to return issues which have at least have component B:
project = yourProjectName
AND component IN ( B )
And if "B" is not a static value, you may need to adjust to use a smart value for the JQL condition.
Kind regards,
Bill
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.