This article explains the steps required when migrating a Jira Cloud instance to Jira Server/Data Center when you were using JMWE workflow extensions on your JIRA Cloud instance. 

Background:

Because of the way Atlassian's Connect framework is implemented, workflows extensions (validators, conditions and post-functions) provided by add-ons are incompatible between Jira Server/Data Center and Jira Cloud. The entire JMWE configuration is contained within the workflows themselves. So you need to take a backup of your entire Jira Cloud instance, identify the workflows and transitions that use JMWE workflow extensions, and fix them.

Challenges:

Workflows using JMWE post-functions/conditions/validators in the Cloud will break on the Server/Data Center because post-function configurations are incompatible with their Cloud equivalents

Missing features:

Some features of workflow extensions mentioned below are unavailable in the Server/Data Center. 

Features unavailable in specific post-functions:

Workflow extension name

Unavailable feature(s)

Field is required validator

Ignore context

Field modified validator

  • Groups exempt from the validator

  • Optional error message

Copy field value from linked issues

  • Destination field

  • "Any" link type in Issue link type

  • Create missing value(s)

  • Ignore empty values

Copy field value to linked issues

  • Destination field

  • "Any" link type in Issue link type

  • Create missing value(s)

  • Ignore empty values

Copy field value from parent

  • Destination field

  • "Any" link type in Issue link type

  • Create missing value(s)

  • Ignore empty values

Copy field value to parent

  • Destination field

  • "Any" link type in Issue link type

  • Create missing value(s)

  • Ignore empty values

Copy value from field to field

  • Create missing value(s)

  • Ignore empty values

Create issue

Create comment as

Set field value

  • Treat value as JSON

  • Create missing value(s)

  • Ignore empty values

Set field value from User Entity Property value

  • Create missing value(s)

  • Ignore empty values

Set field value of linked issues

  • Treat value as JSON

  • Create missing value(s)

  • Ignore empty values

Transition current issue

  • Handling of transition screen and fields on it is not available

Transition linked issues

  • "Any" link type in Issue link type

  • Handling of transition screen and fields on it is not available

Transition parent issue

  • Handling of transition screen and fields on it is not available

Migrating workflows

Before you begin fixing your workflows, publish all your workflows to avoid duplicate work (between the draft and corresponding published workflow)

Step 1 - Backup the Cloud instance and open the XML file

  1. Using JIRA's XML backup utility backup your entire Jira Cloud instance.

  2. Unzip the backup.

  3. Find the entities.xml file.

  4. Open it in an editor that supports very large files.

Step 2 - Identify workflows and transitions using JMWE post-functions

At the end of this step, you will create a table with the workflow name and the transition names of all the workflows that contain JMWE post-functions.

Transition Name

Workflow Name

  1. Find the text "DelegatingPostFunction"

  2. Work your way up on the file from the line that contains "DelegatingPostFunction" to find the name of the transition on which the post-function is configured. You can identify it under the <actions> tag.

  3. Write down the transition name in the table.

  4. Work your way up further on the file from the line you have found the transition, to find the name of the workflow. You can identify it under the <Workflow> tag. Refer to the above image.

  5. Write down the workflow name.

  6. Find the next instance of DelegatingPostFunction

  7. Repeat steps 2 to 6 until you reach the end of the file.

  8. Repeat steps 1 to 7 but searching for RemoteWorkflowPostFunctionProvider instead of DelegatingPostFunction

  9. Now you will have a list of transitions and their corresponding workflow name.

Transition Name

Workflow Name

Create, Done

SFVFUP

Start Progress, Reject

TPI

Step 3 - Manually edit the XML file

  1. class.name changes

    Most issues with JMWE Validators and Conditions can be resolved by a simple search and replace. For each entry in the table below replace the text in the first column (Current class.name) with the text in the second column (New class.name) throughout the file using ReplaceAll.

Current class.name

New class.name

com.atlassian.jira.workflow.condition.RemoteOnlyCondition

com.innovalog.jmwe.plugins.conditions.NonInteractiveCondition

com.atlassian.jira.workflow.condition.PreviousStatusCondition

com.innovalog.jmwe.plugins.conditions.PreviousStatusCondition

com.atlassian.jira.workflow.condition.SeparationOfDutiesCondition

com.innovalog.jmwe.plugins.conditions.SeparationOfDutiesCondition

com.atlassian.jira.workflow.validator.FieldRequiredValidator

com.innovalog.jmwe.plugins.validators.FieldRequiredValidator

com.atlassian.jira.workflow.validator.FieldChangedValidator

com.innovalog.jmwe.plugins.validators.FieldChangedValidator

com.atlassian.jira.workflow.validator.FieldHasSingleValueValidator

com.innovalog.jmwe.plugins.validators.FieldHasSingleValueValidator

com.atlassian.jira.workflow.validator.ParentStatusValidator

com.innovalog.jmwe.plugins.validators.ParentStatusValidator

com.atlassian.jira.workflow.validator.PreviousStatusValidator

com.innovalog.jmwe.plugins.validators.PreviousStatusValidator

Step 4 - Import the backup into your JIRA Server/Data Center instance

  1. Zip back the XML file.

  2. Log in to Jira as an administrator.

  3. Restore the data from the xml file into your Jira Server/Data Center instance.

Step 5 - Manually edit the workflows

By now, you will have completed the XML fixes for workflow conditions, validators and unavailable workflow post-functions. The remaining fixes must be done by recreating the post-function and deleting the existing ones. 

Before you start

  1. Open the table prepared in Step 2.

  2. On Jira Server/Data Center and Jira Cloud:

    1. Go to the Administration icon 

       and click on it.

    2. Go to Issues → Workflows

Recreate the post-functions in Jira Server/Data Center

→ For each affected workflow listed in the table open the workflow in an edit mode in the Cloud and the Server/Data Center.

→ For each affected transition listed for the workflow, go to that transition in the editor and then to the Post Functions tab.

    1. Locate the first strange looking post-function in Jira Server/Data Center. You can easily identify JMWE post-functions imported from Cloud because they appear strange, with either Class: com.atlassian.jira.workflow.function.DelegatingPostFunction or Class: com.atlassian.plugin.connect.jira.workflow.RemoteWorkflowPostFunctionProvider similar to this:

    2. Locate the same post-function in Jira Cloud by its position in the list and edit it to see its full configuration.

    3. Recreate the post-function:

      1. Click on Add post-function in Jira Server/Data Center.

      2. Recreate the post-function looking at its equivalent configuration in Jira Cloud. While recreating the post-function you might notice some known incompatibilities in JMWE Server/Data Center. 

      3. Move the post-function right before the existing post-function

      4. Delete the existing post-function in Jira Server/Data Center.

Once all the transitions in a workflow are fixed, publish the workflow.