You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
we have a custom field and want to start a workflow based on the content.
I have made a list of radio buttons. I want to let the user chose one of the options and then continue the different flow according to the different options.
I think this workflow is performing checks on a field itself, not on its value.
How can I achieve this?
Hi @jacky.wang,
You could design your workflow to allow for different paths, like in this (totally random) example:
In the example, any created ticket will land in status triage and from there can only transition to the Open status. I would recommend you make sure that your custom field is a required field before you can move into the open status (use a required field validator to make sure this is the case).
Once a ticket is in status open, specify a condition on every transition that goes from open into a next status. In the example, those are the transitions to:
Suppose that a Server Change must be approved. I can make sure this is the only available transition by using the following Value field condition on the transition to Waiting for approval:
In the same way, I can provide appropriate conditions for the other transitions in the workflow.
Transitions that don't match the conditions you specified will not be available to the user.
Hope this helps!
You will need to find a way to add conditions to the workflows (the ones built into Jira off-the-shelf are not very configurable when it comes to custom-fields)
Once you've got a method for creating conditions, edit your workflow - you 'll need to create all the different transitions you want to allow depending on the options in your field,
Then on each transition, add a condition that blocks it unless the field is set to the right value.
Note that if you want the action of editing an issue and setting the field to also perform the transition, then you will also need a listener to catch the edit and execute the relevant transition.
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.