Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

  • 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 Colored Labels through a workflow transition without overwriting existing label

Example Usecase:

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

Edit Issue: New Action → Edit Issue

Use ‘More options

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

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

Need help?

Please raise an issue in our Help Center in case of questions or to report a bug, we are here to support you.

  • No labels