As new Story is created in Scrum backlog.
We want to use JQL to check to see if a story exsist and if not create one.
This is a copy of the JQL I am attempting:
project = "BB Scrumble" AND issuetype = Story AND component = "AA Stack" AND status not in (Done,Cancelled) and ({{"Labels 1"}} = {{triggerissue."Labels 1"}})
The Labels 1 field contains our strategy IDs. We can have multiple Scrum Stories with same strategy ID, but we only want to create one new story in Scrum with component "AA Stack"
Hi @Brandon Criger and welcome to the community!
You can have a query where one smart value = another smart value. Also, is Labels 1 a text field? If so, it should look something like this:
project = "BB Scrumble" AND issuetype = Story AND component = "AA Stack" AND status not in (Done,Cancelled) and "Labels 1" ~ {{triggerissue."Labels 1"}})
Thank you for the feedback. I did find out my original JQL worked, but me the user didn't have authority to create new issues in the specific project.
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.