hi I would like to create automation like color coding or labels if an issue had no recent activity in the past 2 weeks (frozen, one label or color) if has recent activity let's say 10 days then another one (warm, one label or color) and if had many recent activities (hot, one label or color). How is that possible?
Jira Cloud automation doesn't directly support color-coding issues, but you can achieve a similar effect using labels and automation rules. Here's how to set it up:
Labels
Create three labels: "frozen" (for inactive issues), "warm" (for somewhat active issues), and "hot" (for highly active issues). Choose distinct colors for each label for visual identification.
Automation Rule
project = "<project key>" AND updated >= -2w
(This checks if the issue was updated within the past two weeks)
Adding another condition (Optional):
To differentiate between "warm" and "hot" issues, you can add another condition after the first one:
project = "<project key>" AND updated >= -10d AND updated < -2w
This checks for updates within the last 10 days (but not in the past two weeks).
Final Step
Explanation
Hope this helps.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.