How to set up automatic transitions to questions in Jira?

We are moving from another problem tracking platform to Jira. How can I configure scripts that automatically perform state transitions without having to log into Jira? Should I customize user services?

Another case is that someone is pushing the code to mercurial. How can I configure automatic transitions on this event ("development completed")?

I have Jira Atlassian, Fisheye, Mercurial and it works.

+4
source share
1 answer

To automatically jump to the problem, check the explorer script https://plugins.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner

There are many examples and built-in scripts that allow you to implement this type of functionality (and much more)

For your second question, you can use the "smart commit" function provided by fisheye http://confluence.atlassian.com/display/FISHEYE/Using+Smart+Commits

It works fine with svn, not sure about hg.

Francis

+5
source

Source: https://habr.com/ru/post/1399369/


All Articles