Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

I want to automatically change the status of a ticket from open to triage when first comment is adde

Akanksha Agrawal
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
September 27, 2018
Want to automatically change the status from open to triage state, as soon as one adds first comment to the ticket

2 answers

2 votes
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 28, 2018

Hello,

You would need an add-on for it. 

For example, you could use the Power Scripts add-on:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

You could create a listener on the issue commented event with a code like this:

number [] arr = getAllCommentIds(key);

if (size(arr) == 1) {

  autotransition("tranistion name", key)

}

You can read more about listeners here:

https://confluence.cprime.io/pages/viewpage.action?pageId=6558205

0 votes
Stefan Kohler
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 27, 2018

Hi @Akanksha Agrawal,

We normally look at Automation for Jira for this kind of automation. It's easy to set up and very flexible, it might work for you too.

Cheers,
Stefan

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events