I would like to create an automation that creates a QA subtask in an issue, but only:
I already built the subtask creation piece but need help with this specific piece. Any thoughts?
Hi @Victor -- Welcome to the Atlassian Community!
Without seeing your entire rule...
Perhaps try using the related issues condition with JQL, checking for no issues matching, and use the exact-phrase syntax for the CONTAINS operator to escape the quotation marks:
https://support.atlassian.com/jira-software-cloud/docs/jql-operators/#CONTAINS----
For example:
project = yourProjectName
AND summary ~ "\"QA Task - \""
AND issuetype = Subtask
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.