I am trying to create an automation that will:
- Flag the Issue
- Change the Issue Color
When our custom field "category" is empty when the issue is transitioned to "In Progress"
The screen grab is what I have so far
Hi @Kyle Wilz
Thanks for the questions.
Your automation looks fine, except for the following points.
For the flag edit action, you can use the following JSON in the advanced field.
{
"fields": {
"flagged": {
"value": "Impediment"
}
}
}
For the card color, Jira doesn't allow direct card color change via automation, but board colors are configured via JQL in the boards settings.
Usually used:
-Labels
-Priorities
-Flags
You can do the following workaround and change the card color via the label.
Add another action: Edit issues
Change labels (for example: labels = missing-category)
Then go to Board settings:
Choose queries
Add rule: labels = missing-category --> Choose a color
Let me know if you have any questions.
Hey @Kyle Wilz ,
Flagging is already working via your automation rule?
For card colors, go to the board settings (see https://support.atlassian.com/jira-software-cloud/docs/customize-cards/) and configure the color—in your case, probably by queries/JQL.
Regards,
Thorsten
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.