Dear Support,
I would like to automate the transition of a status of a task on Kanban boards.
I use Kanban board status transition schemes as "any-to-any" without any specific sequence.
What I would like to automate:
Rule One: if a Due Date field in any task in any column (e.g. backlog) matches today (i.e. current date), then this task should be moved to a column (e.g. TODAY) with a specific status (e.g. TODAY).
Rule Two: if the said task is not moved by user to another column (e.g. Done) within the said due date (i.e. TODAY), then the next day this task should be flagged and moved to a specific column (with another status).
1) Is it possible and how to arrange the said rules for a) a specific project, b) multiple projects, c) globally?
2) Is it possible and how to arrange the said rules for other types of boards (i.e. non-Kanban)?
3) Can the said rules be arranged for Company-managed software only?
4) Are there any 3-party solutions for automation?
Hi @Wonderful Life and welcome to the community!
You can do this with one rule:
issueType = Task and status = TODAY and dueDate < startOfDay()
issueType = TASK and status NOT IN (TODAY,DONE) and dueDate >= startOfDay() and dueDate < startOfDay(1)
1) Is it possible and how to arrange the said rules for a) a specific project, b) multiple projects, c) globally?
Yes - You would just need to set the rule scope.
Note 1 - You would do this from Settings >> Global Automation and need to be a Jira Admin.
Note 2 - You'll need to keep an eye on rule executions to make sure it doesn't execute too frequently and get throttled.
2) Is it possible and how to arrange the said rules for other types of boards (i.e. non-Kanban)?
As long as you're using the same fields/statuses, the rule will be indiscriminate of boards
3) Can the said rules be arranged for Company-managed software only?
Yes - Like question 1, you can do this by adjusting the project scope. You would need to set a multiple project scope and be explicit as to which projects are in scope to exclude team managed projects.
4) Are there any 3-party solutions for automation?
I don't see a need for 3rd party solution. Jira's automation is quite robust. If it can't handle it the way you want, there are likely workarounds out there.
Hi @Wonderful Life -- Welcome to the Atlassian Community!
First thing, this is not a support channel. Instead this is a community of users helping others. I wanted to ensure you understand the difference between this area and the actual Atlassian Support team: https://support.atlassian.com/
Next, what is the purpose of the Kanban board you are using? With teams using Kanban, they typically pull work based on their capacity and the progress of items. Moving things automatically based on dates seems like it is trying to solve some other need.
Kind regards,
Bill
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.