Hello All,
I'm trying to create a filter where the component is changed more than 3 times for a specific field on an issue.
Once that field value has changed more than 3 times I would like to pull those issue into a filter.
Hi @Jeremy Price - You won't be able to do this natively without some workarounds...
The automation rule would look like this:
{{#=}}{{issue.Your Custom Field}}+1{{/}}
Now you can use JQL against that field:
"Your Custom Field" > 3
NOTE - You want greater than 3 here because the first component setting already gives the custom field a value of 1.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.