automate transition jira issues

Ramaiah Pendli October 26, 2016

Hi,

transition JIRA issue form one state to another state, if it's lying more than 14 days in the same state.

can some one help me can we automate with groovy script or services 

 

1 answer

0 votes
Deleted user October 27, 2016

Hello,

We have a similar use case that we solved in the following manner.

 

Using the Atlassian Automation Plugin we create a trigger that

  1. Has a JQL filter trigger and runs 4 times a day e.g. CRON schedule “1 2 2/7 * * ?”
  2. With a JQL expression filter all issues that are overdue e.g. project = "Project1" AND type = "Issuetype" AND status = Open AND duedate < now()
  3. Run an action “Transition Issue Action”

Suggest an answer

Log in or Sign up to answer