Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

  • We hope to provide Workflow Validation, Condition and Post Function in the near future. In the meantime please use the following workarounds to add and delete using Jira Automation

Add & Remove Label Manager items Colored Labels through a workflow transition without overwriting existing label

...

When the status changes to from status “In Progress” to Done add the Label IN-UAT and remove the Label UAT-Done for your field Label .

Trigger: Issue Transitioned → Select From And/Or To Status

...

Add the following code into the field. Replace customfield-ID with your Label customfield-ID.

Code Block
{
    "update": {
        "customfield_10042": [
            {
                "remove": "IN-UAT"
            },
            {
                "add": "UAT-Done"
            }
        ]
    }
}

...