This might be a tough question to write out...
So we have a status called Prioritization. Every work item in this status has a priority number field listed. For this example, lets just say we have 3 work items:
What we would like to happen is when one of these work items is transitioned to the next status (lets say the next status is In Progress), it changes the priority like so:
Is this possible through automation and if so what would that look like?
Hi @ckopanon
I am using an Automation Rule to achieve this requirement. You can try same:
Change the Status name from open to Prioritization in your Automation.
Regards,
Ashish
Hi @ckopanon
Yes, it is possible. I tried it in my instance, and it worked.
Trigger: Issue Transitioned to --> In progress
Condition: {{smart values}} condition -- > {{triggerIssue.Priority}} is grather then 0
Lookup issues: status = "Prioritization" AND "Priority" > {{triggerIssue.Priority}} ORDER BY "Priority" ASC
Branch rule / related work items: status = "Prioritization" AND "Priority" > {{triggerIssue.Priority}}
Edit work item: Edit "Priority" field and set this {{issue.Priority}} - 1
I test it with my fields, whose name is Story Points. You can also check the screenshot.
Will be glad, that it is help you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @ckopanon
This might be possible, given some assumptions:
If those are all valid assumptions, a rule could:
Kind regards,
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.