Forums

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

how to automatically trigger a transition after log work?

Martin Heini
Contributor
January 17, 2019

Logging work in status Open is allowed. But it were nice if status will then change automatically to In Progress. It's quikly done to click 'w' on a card in a board - and to forgot to set issue in correct status. Any idea?

2 answers

2 accepted

0 votes
Answer accepted
Deleted user January 17, 2019

Hi Martin,

Got your support request linked to this question, answering here so others can see it too :)

Alexey is quite correct in that you will need a plugin to do this. With Automation for Jira, you just need to set up a simple automation rule such as the one in the screenshots below.

 

c1.pngc2.png

c3.png


We just wrote a blog about the work log feature which you can read here. You can try it for free or play around in our Automation playground here if you would prefer. 

Let me know if you have any other questions! 

Cheers,

Simeon [Automation for Jira]

Martin Heini
Contributor
January 18, 2019

Hi Simeon

that looks very smart - thank you very much. Nice to see that solutions are existing... I will have a look to these plug-in's.

Martin

Deleted user January 21, 2019

No problems. Ask if you have any more questions or raise a support case.

Cheers,
Simeon.

0 votes
Answer accepted
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.
January 17, 2019

Hello,

You would need a plugin 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 should create a listener for the Work Logged On Issue event with a code like this:

if (status == "Open") {
  autotransition("In Progress", key);

}

Martin Heini
Contributor
January 17, 2019

Thank you. Looks very interesting - so easy!

Suggest an answer

Log in or Sign up to answer