I'm trying to create automation for a specific tempo team to receive an email when an incident is assigned to them... I have tried a few different was to achieve this but fail at that custom field assignment.
I have tried the advanced compare condition using the custom field then equals Tempo Team ID and no luck...
When i look at the "Issue Fields condition" there is no option for tempo team or a way for me to use either {"fields":{"customfield":} or {{issue.customfield_xxxxx}}...
Please use the Advanced Compare Condition when the fields you want to test are not listed in the drop-down fields of the basic Field Condition. That one allows you to specify a smart value expression.
Kind regards,
Bill
Hi @Bill Sheboy Thank you for responding! I checked that one too. Im not sure on how to split the value. When I tried {{issue.customfield_xxxxx}} for the custom field then the first value then tempo team ID in the second the logs said condition not met.
Then I tried {"fields":{"customfield":} in the first value then team ID for the second value and received the same message?
Im sure I'm doing something wrong I'm just not sure what values are needed there.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Smart values are name, spacing, and case-sensitive. And the smart values available in rules often are different than the field name displayed in the UX.
Thus it can help to first confirm your custom field id, or smart value, is supported by rules and the correct value to use. This how-to article can help. Essentially you...
https://support.atlassian.com/cloud-automation/docs/find-the-smart-value-for-a-field/
Once you have the value, try using that in your condition. For example, it will probably be something like this:
Please substitute in your values once you find them.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This worked! I just needed to use "contains" instead of "equals". TY!!!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Aaron Howard ,
Please refer to this KB for setting up Tempo Team on Jira automation.
Best regards,
Susan Wu
Tempo Product Expert
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for this info! It helps with another issue I am having related to issue collector.
In the scenario I mentioned above I am not trying to change the tempo team. I am trying to set an "IF" or "AND" condition that sees that a specific tempo team is already assigned and sends an email to that team alerting that the incident has been assigned to the team.
What I have..
+ When Issue Created
- If : Issue Type Equals
Incident
And; Reporter is
Our ticketing system
And: Project Equals
Our Program
And **(this is where I'm looking to add a condition to check the tempo team)**
Then: Send Email
This would go to the tempo team email distro
I hope this makes better sense.
THANK YOU!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It would be more complicated if you wish to alert all team members. But it would be easier if you just alert the team lead.
With the Team endpoint, you have already gotten the team lead's accountId from the previous call. You can store it as a local variable and get team lead's email with Jira REST API.
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.