Hi...I have a simple workflow with only two statuses: Available and Loaned....I want to make sure that once the issue is created, if the user assigns the issue to someone, the status of the issue goes to Loaned. Is there a way to accomplish that in scriptrunner or any other plugin? Users are creating issues, then assigning them to someone but if they dont manually transition the issue to Loaned, then the issue will remain as Available with the Assigneed field populated and that is creating a lot of confusion.
Thanks
You can accomplish this with a ScriptRunner Listener, but you'd need to write the JAVA/Groovy code.
You should be able to accomplish this with JIRA Automation Plugin too. This is FREE for JIRA Server. https://marketplace.atlassian.com/plugins/com.atlassian.plugin.automation.jira-automation-plugin/server/overview
Hi Steven...thank you very much for your assistance. That works great!
Thanks again
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the feedback! That's great to hear! Good luck
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Steven...did you notice that that doesnt work when editing the Assignee field in the People section with inline editing?
It works with the Assign button and when clicking Assign to me but if you use inline editing and assign the issue to a person there, the rule does not execute. It seems there is a bug with the Automation plugin because I went to Atlassian labs' bit bucket and a ticket has been already created since 2015 for the same bug and another user recently had the same problem with the latest version of the automation plugin (the one I am using as well, 2.0.3)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I assumed that inline editing the Assignee field would fire the Issue Assigned event.
Perhaps you can change the Trigger Events to "Issue Assigned" and "Issue Updated", and then change the JQL query to filter for assignee is not EMPTY
.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Steven...that made the trick...thanks a lot for your help man!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project = "Core JDX" AND issuetype in standardIssueTypes() AND Sprint in openSprints() AND status changed from "Code Review" to "Ready for Testing" AND assignee in (umakant.b, jedidiah.j, sathishkumar.d, subbiah.s)
Try this..
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.