Hello we have a rule setup that sends out an email notification anytime a User modifies the Original Estimate field on a ticket while it's in an active Sprint.
The problem with this setup is that the only option available to select for this from the Value Changes trigger is Time Tracking. So of course frustratingly this will also send email notifications out anytime someone modifies the Remaining Estimate field too :(
So would like to know if it's possible to have this automation setup but only apply specifically for the Original Estimate field?
Hi @Dan H
The {{fieldChange}} smart value which is set by the Field value changed trigger contains the following fields:
In the case of the Time tracking field, the field item will contain one of:
You can use these values in an Advanced compare condition to discover which time tracking field was changed as seen in the below image:
@Gareth Cantrell Quick question, I use this condition in another very similar Rule but I'm getting in the logs that this doesn't appear to work if the Original Estimate is blank and then a value is entered (i.e. for new tickets created).
e.g. Original Estimate: ---> Original Estimate: 2d
Then no actions performed as it fails this advanced condition.
So not sure if I'm missing something?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Dan H if you're using a different trigger in your rule then the {{fieldChange}} smart value will not be set.
Could you attach a screenshot of your rule-chain view up to the point of the condition that's failing?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Certainly!
So on a ticket if an Original Estimate value is entered for the first time, it will 'fail' the first condition below (No Actions Performed)
So what I'm trying to achieve is the following;
If Original Estimate value is entered (if blank/zero) OR changed then continue with rule.
I've attempted to do this by creating a second Rule with: timeoriginalestimate is greater than 0 (which works!) but now I've run into the problem of both Rules will successfully trigger anytime the value is changed :s
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Dan H
In the rule where you want to check when the field is initially populated, you need to look for {{fieldChange.field}} equal to timetracking.
For checking when the original estimate is updated, you need to look for {{fieldChange.field}} equal to timeoriginalestimate.
This behaviour is peculiar to the time tracking field and you can see this by using the "Log action" component and setting the smart value in the log message.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you again @Gareth Cantrell this works!
Two separate rules setup to handle both those conditions;
I did initially try to place both of these into ONE rule using If / Else block, but I failed to get that to work lol (screenshot below). What happens for me is that the second IF always fails, but I'm happy if this solution only works by creating two rule :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I also noticed the else block would not evaluate the condition.
Probably worth raising a bug with Atlassian for this.
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.
Hi @Iryna P.
probably it would be better to ask a new question, unsure if many people will come back to this one here specifically after months having passed.
There is an example Automation rule which could get you started:
https://www.atlassian.com/software/jira/automation-template-library/rules#/rule/1371692/26233950
You could have a look if it meets your needs. The above was an example back then, if I understood it right Dan wanted to send an mail in the end - probably as of now there is no formula for "edit" behind it for him.
Regards,
Daniel
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.
Very interesting how a field is stored in seconds, and when you sum it and put the result in the same field, it assumes the inserted value is hours, and so you have to divide by 3600. (eyeroll)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How could I access the changed field values (to/from) when BOTH timeestimate and timeoriginalestimate did change when editing an issue?
tried:
{{#changelog.timestimate}}{{from}} -> {{to}}{{/}}
{{#changelog.timeoriginalstimate}}{{from}} -> {{to}}{{/}}
shows nothing.
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.