I am trying to Automate one scenario where I need to use
Now in this the field that I need to compare is Custom-Cascading field.
It has like name as "Stage" with drop down as
01-Contract
Approved
Rejected
Now what I want is to compare if any user updates Stage field as Approved
In JIRA search, this field value is displayed as 01-Contract - Approved
What I am not able to understand is how to write it in Advanced compare condition
{{issue.Stage.??
Hi Peyush,
Try {{issue.Stage}} = Approved
And if that doesn't work, give this a try:
{{issue.Stage.child.value}} = Approved
Hi John,
Value of field Stage has 2 drop downs:
01-Stage
02-QA
03-Build
with further if you eg select 01-Stage, it will show another set of values as:
A
B
C
D
When you check for JIRA in search or export report, this whole field value will be displayed as:
01-Stage - A
01-Stage - B
etc.
Should I still use just as you suggested?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If Approved is not in the list for any other first level option, it might work.
Otherwise, you can add two Advance Compare conditions - one to check the parent.value and then one to check the child.value.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
tried the way you mentioned
with first value as {{issue.Stage.parent.value}}
and Second value as {{issue.Stage.parent.value}} = 04-QA
it doesnt work, am I doing anything wrong?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Actually, you shouldn't be using the advanced compare because they are not really two different fields - they are one field.
Try changing the compare to just a JQL condition with {{issue.Stage}} = Approved
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hm so my Problem Statement is I want that if anybody changes this Stage field to 01-Contract in any JIRA instance, ENgineering JIRA should automatically get updated and so I need to put a checkpoint or condition to trigger this. and If I use this as a trigger point, I can go and take action on Linked issues of this JIRA
If I use JQL query, it will be difficult to use automation to trigger events on linked issues but I will try that way as well
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
with the screenshots I have shared, condition passes in all cases
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ok using your suggestion of using JQL and putting in multiple conditions, I have been able to find a workaround for this
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @John Funk . i have a kind of similar issue. please have a look at this post. https://community.atlassian.com/t5/Jira-Software-questions/link-2-different-Cascading-fields/qaq-p/2463721#M287014. i ve been struggling to get this done. i kind of have idea how get it working but not sure how to execute it. please check and advise me.
Thanks in advance
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
We are struggling with Advanced compare condition.
My requirement is
Parent issue have 2 or 3 linked issues or subtasks
If linked issues due date is greater than parent issue due date then it will replace with parent issue due date.
While i am using Advanced compare condition in automation it is not working.
Please find the screen shot of my automation rule.Please correct the automation rule if incase i am wrong here.
Thanks-Santosh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.