Hi!
I would like to add a condition on a sub-task transition button to be activated only a customfield of the parentissue have a specific value.
ex: if the customfield 'City' = 'Atlanta' in my parentissue, i want the transition button of the sub-task to be activated.
thanks in advance for your help!
You could do this if you were to add Scriptrunner to JIRA. Natively JIRA can't create this kind of workflow condition. But with scriptrunner, you can create a workflow condition called "Script Condition". Selecting that option then provides a couple of different ways you could go about creating this condition. The more complex methods are to use either a Custom script or simple script condition.
But in my case, I was able to use the "Allow the transition if this query matches a JQL query" Since ScriptRunner adds a bunch of additional JQL functions, we can actually use those here to find this information. Your query might looks something like this:
issueFunction in subtasksOf("City=Atlanta")
This JQL query only returns issues that are subtasks where the parent issue has a value of "Atlanta" for the field "City".
Oh, also I should note, I created a separate workflow for my subtask issue type to follow in my project. Not sure if you were planning to do this, but this makes it easier to make sure this condition only gets applied to that workflow that only controls those specific issue types. Otherwise if you're using the same workflow for your subtasks as other issue types, this condition could theoretically prevent issues without a parent issue from transitioning here.
it worked like a charm (with Script Runner)
Thank you very much for your time!
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.