Good morning All!!
I am trying to create a global rule to be excecuted manually from Project A and change the status based on issue from Project A in issue in Project B
The problem I have is the the linked issues condition, although the JQL retrieves the issue that applies the condition, when the rule is manually excuted in the audit log show the following:
What am I doing wrong?
Thank you so much for your help.
Ro
Hi @Rosana Casilli - From what I can see, this rule will always fail. Your trigger issue is in a status of PRODUCTTWO, but then you branch into linked issues and then add a condition that for each linked issue, its linked issues status = READY TO RELEASE AND project = CA. Since your trigger issue is not in the CA project and status = PRODUCTTWO, it will not satisfy the linked issue condition.
Hi Mark!! thank you for you quick answer..
So if I want to change the status of linked issues in project CA that are in Ready to Release status to Close when the issue in project TS2 is in status PRODUCTIVO, how should the rule be?
Thanks in advance,
Ro
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could do something like this...
Between your condition status = PRODUCTTWO and the Branch, add this:
project = CA AND issue in linkedIssues({{issue}}) AND status != "Ready to release"
Then remove the condition inside your branch
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mark!!
Thanks once again
this is how I have the rule right now after the changes, is it correct?
If so, when I execute the rule:
It succeded but the advance compare condition is failing
I need that issues linked to TS from CA project in status "ready to release" to be closed.
sorry for bothering but I am struggling here... :(
Ro
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So a few tweaks:
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.