Good Day,
I have a JQL query that is looking at sub-tasks (status and summary) to then trigger some automation. When I put it into the "Related Issues Condition" as "some match specified JQL" and validate the query, I get only two results. When I put the exact same query into a normal filter, I get 50+ (which is the correct number).
The query is ->
(Status = Impacted) AND ((Summary ~ "TTO - IT, Cyber & Corporate" ) OR (Summary ~ "TTO - Data, Ops & Cargo") OR (Summary ~ "TTO - Customer"))
When I run this in the automation, it returns only my "TTO - Data, Ops & Cargo" items, and no "TTO - Customer" items (there are none for the IT, Cyber & Corporate)
All these results are in the same project and should be showing up on the subtask filter.
What could be causing the difference and how can I resolve this?
I've resolved the issue with the exact text syntax. "\"
What is your trigger in the automation?
Are you using lookup issues component to JQL?
Can you share screen shot of your automation to understand where the issue might be?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The overall trigger is a transition of the parent issue to a particular status, and then whether that issue has certain key words in the summary. That works fine. The issue is the JQL for the subtasks, which as I stated initially, works if it is alone in a query but not as part of the JQL in the automation
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Let's assume you have Story or a Task and subtasks are created under it.
When Story/Task is transitioned to Design & Development, the automation kicks in.
Instead of branching for Current Issue, if you branch for subtasks the focus will shift to each subtask.
Add and if to check Status and Summary match the conditions specified,
then take next action.
Can you check if this approach works for you?
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.