Change the workflow status based on custom field value

Zaid Darras February 7, 2022

Hello,

I want to ask how we can change the status based on the custom field value?

1.png

The goal that I want to achieve is as follows:

I want to add screen, this screen contains a custom field as "Change Type"

- If I choose this value " Normal Change", change the status to "Passing the modification request".

If I choose this value"Major Change", change the status to "Fill out BRD".

Could anyone help me to achieve my goal, please?

Thanks,
Zaid

2 answers

2 accepted

4 votes
Answer accepted
Nikki Zavadska _Appfire_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 7, 2022

Hi @Zaid Darras ,

You should be able to achieve this using Automation for Jira in your project settings (you can find this in Project settings > Automation).

Here you can create a rule that gets triggered every time someone changes the custom field.

Then you would create 2 branches where you validate that if the custom field value matches  "Normal Change" then change the status to "Passing the modification request".

The second branch will be checking if the custom field is "Major Change" then change status to "Fill out BRD".

 

Details of the rule:

Trigger: Field value changed - check for your custom field

New rule: Branch rule/ related issues - For current issues

  New condition: Issue fields condition - check that custom field equals to  Normal Change

  New action: Transition issue to - Passing the modification request

New rule: Branch rule/ related issues - For current issues

  New condition: Issue fields condition - check that custom field equals to  Major Change

  New action: Transition issue to - Fill out BRD

 

Hopefully this makes sense :)

Zaid Darras February 7, 2022

Thank you @Nikki Zavadska _Appfire_  100%

Nikki Zavadska _Appfire_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 7, 2022

Happy to help @Zaid Darras !

Like Zaid Darras likes this
0 votes
Answer accepted
Jack Brickey
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 7, 2022

You should use Automation for this...

trigger - field value changed

condition - if/else block and check your two values

action - transition to desired status

Zaid Darras February 7, 2022

Thank you @Jack Brickey  100%

Like Jack Brickey likes this

Suggest an answer

Log in or Sign up to answer