Hello group, I appreciate who can help me, because I want to create an automation that schedules the transition change 24 hrs after changing the state, for example
day 1: isue changed at 8 am from in progress to test
day 2: automatic 8 am transition from test to done
thanks for your help
Hello @Diego Arturo Bustos Aponte
Please show us the rule you have constructed so far.
You would need a rule with a Schedule trigger that would run automatically to check for issues that match your conditions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
With native Jira functionality there is not a field available that you can use in a filter to look at the date of a specific Status change.
This will get you close to what you want:
status changed from "In Progress" to "Test" before startOfDay(-1)
This statement looks for issues where the Status value changed from "In Progress" to "Test" before the start of day yesterday.
When you combine that with
status = "Test"
you get the issues that changes status and are still currently in that Status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.