I have 3 team-managed projects: Design Project, Dev Project, and Test Project. When an issue is done in the design project, the issue needs to be cloned into dev project. Also, when an issue is done in the dev project, the issue needs to be cloned into test project. I have the automation but it fails. I will add the screenshots. I am open to any suggestions, thanks.
Design Project Automation:
Design Project Automation Fail:
Dev Project Automation:
Dev Project Automation Fail:
Use single quotes within double quotes or vice versa
project = TEST AND issuetype = Enhancement AND status = "Seeking Approval" AND issueFunction in subtasksOf("project = TEST AND issuetype = 'TCRM - Dev Approval' AND status in (Open, Rejected)")
This does not give me an error however it is not returning the subtasks that are either open or rejected when the parent is in seeking approval
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I also tried this and it still does not return anything
project = TEST AND issuetype = 'TCRM - Dev Approval' AND status in (Open, Rejected) AND issueFunction in parentsOf("project = TEST AND issuetype = Enhancement AND status = 'Seeking Approval'")
However if i just use the sub queries they each return tickets.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is Enhancement a subtask and "TCRM - Dev Approval" the parent issue? If not try:
project = TEST AND issuetype = 'TCRM - Dev Approval' AND status in (Open, Rejected) AND issueFunction in subtasksOf("project = TEST AND issuetype = Enhancement AND status = 'Seeking Approval'")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That worked great thank 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.