Hello,
I'm looking to build a global automation rule that needs to work something like this.
When a field, let's say 'Client' (which is a drop down field and not free-text) on the issueType 'Candidate', is updated to a particular value, say Client-1, we need the automation rule to update the Epic link on that candidate issue to a particular epic that we can define, say Epic-5. We don't need any further action.
Tried finding a trigger condition to put this in place but couldn't quite match the conditions as 'issue updated' condition only checks if a given field was updated but doesn't let me check if the said field was updated to a particular value.
Any help is much appreciated!
Would you please post images of your rule and the audit log details? That may provide context for what is happening. Thanks!
Until then, I suspect that the condition in your rule is testing against the field alone...which would return the ID for the selected value. But the dropdown field's value has both an ID and a value component. Perhaps try comparing to this, changing to your field's name:
{{issue.myCustomFieldName.value}}
Kind regards,
Bill
Thank you Bill. You're amazing. I tried it out and was able to get to the bottom of it. Your help is much appreciated!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sachin Manjaiah ,
could you show a screenshot of your issue? Are those fields 'custom fields' ?
I created a rule to kinda reproduce your requirement with the priority field:
given: issue value changes in field 'priority'
when: new value is 'highest'
then: edit issue --> set Epic Link to <anyEpic> (eg. JT-58 in my case)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just to provide more details and context, I have tried something like so:
When: Value changes for: field
New Condition: Field equals 'selected value from dropdown list'
New Action: Then : Edit Issue Fields: Epic Link.
This doesn't seem to work
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.