Hello,
I would like that a field contains the actual Opensprint when the issue is created.
For that :
- I create a custom field (a short text)
- Like I have already an automation rule, I modify it
I see by search that I can use :
{{#issue}}{{#sprint}}{{#if(equals(state,"active"))}}{{name}}{{/}}{{/}}{{/}}
But when I create an issue, my custom field stay empty
So i would like to know what is wrong on my automation.
Thanks a lot
Please post an image of the audit log details showing your rule execution. That will provide more context.
For the issue your rule is trying to update, does the Sprint field already have the value selected? The smart value expression you show will only provide the current sprint if it was already selected in the Sprint field.
Kind regards,
Bill
Hello,
My rule :
The log said that it works
But my field (which is a shot text is emtpy while it must have the opensprint value = 13.24
Like the sprint value
Note: when we create the ticket, the sprint value by default is "Bugs" and I can(t copy srpint value field.
But in right, i have several sprint open :
bug
friday
Sprint13.24
and I would like that the field has the value Sprint13.24. But i can't write 13.24 because next month, it will 14.24, and then 15.24....
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The expression you show will work if there is a list of issues and not a single one. Please try this one which only iterates over the sprint values for a single issue:
{{#issue.sprint}}{{#if(equals(state,"active"))}}{{name}}{{/}}{{/}}
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.