Is there a way to trigger an automation when a jira is in an active sprint AND when the Assignee field is assigned to a person?
Currently I have manual triggers that create dev subtasks and qa subtasks when the assignee and assigned tester fields are assigned. Team members trigger them manually after they pick up their tasks and a sprint has started.
I am trying to see if I can automatically do this for them when a sprint is started. I am assuming I will need to use JSON in the more options area to accomplish this task IF it is possible.
Hi @Bobby Moyini!
Which event do you want to be the trigger?
For the first scenario, you should be able to do it with something along these lines, this is just very basic so it would do best to be filled out with more if statements to not have it trigger all the time:
When Sprint is started (for project X)
Branch on JQL: project = SSH AND sprint in openSprints() AND assignee is not EMPTY
Then Create Subtasks
The second scenario could look like this instead:
When Issue is assigned
IF the issue matches the JQL (that it's in an active sprint in the project, for example)
Then create subtasks on that issue
Hope that gives some new perspective and good luck! :D
What about triggering on issue assigned and a condition of the issue being in active sprint?
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.