Hi,
Can I have check all yellow/color status to green/color status instead of individual status as the trigger?
I want to have an automation rule execute when the issue status [In Progress] to [Done]. I can add trigger [In Progress] to [Done], but my requirement is to check all yellow category status like "In Progress" to green[Done].
Thanks
Masud
Are you asking if there is a trigger on StatusCategory changing? If so, the answer is "not yet". There is an item in the Code Barrel backlog to add this:
https://codebarrel.atlassian.net/browse/AUT-1722
There are a couple of work-arounds, depending upon how often you want to update and other field usage:
project = myProject
AND statusCategoryChangedDate >= -1h
AND statusCategory = "Done"
Best regards,
Bill
Hi @Bill Sheboy
Thank you for the quick reply, Yes, was looking for a status category trigger.
The workaround can be done by a scheduled trigger which will have some delay and we want to have real-time instead of scheduled.
Thank you.
Masud
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for confirming...
There is a 3rd work-around to just check for a status change (transition) and then follow that with a condition check on status category. That should do what you want immediately after a change.
__Bill
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.