Is it possible to automatically change the priority when a custom field changes to a specific value?
Example:
Priority: low
Custom field: question
---
Priority: urgent<==has to change automatically
Custom field: problem <=Because this one has changed
Slingshot UpdateFields might be a solution.
https://marketplace.atlassian.com/manage/plugins/com.tiltedsolutions.slingshot.updatefields
With the following Listener configuration, "question"s will always have priority "low" and "problem"s will be "urgent", asuming your custom field is named "CustomfieldName".
<SlingshotUpdatefields>
<update-fields>
<customfield name="CustomfieldName" eq="question"/>
<priority set="low"/>
</update-fields>
<update-fields>
<customfield name="CustomfieldName" eq="problem"/>
<priority set="urgent"/>
</update-fields>
</SlingshotUpdatefields>
The Listener will ensure this after every change to the issues, not just at transitions.
More power comes from Slingshots ability to declare inter-issue data synchronizations, that is, set field of linked or child/parent issues (to arbitrary depth) abd the use of variables to set one field to the value of another (again, between issues if you like).
cheers, Jos
If you can use script runner this can be a simple job:
https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner
https://jamieechlin.atlassian.net/wiki/display/GRV/Post+Functions
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes. A solution may be our plugin JJupin - Live Fields (but there are other possible solutions). Check: http://confluence.kepler-rominfo.com/display/JJUPIN/How+%27Live+Fields%27+work
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.