Hi everyone ,
situation: I'm doing automation for project , and I need that every task with status Ready should change to status Done after 7 days last update.
status=Ready and 'Updated' > '7d'
status = Ready working , also he should check field Updated , and if it's older than 7 days , automation should change status to Done.
thanks for all. working rule is here:
Hi @Edgar Pusklevic ,
Create a automation using "Scheduled" trigger (example: Run daily at 01:00 AM) and below JQL in the conditions.
status = Ready AND updated < startOfDay("-7d")
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.
Hi @Edgar Pusklevic ,
Please accept the answers which helped you. Users with similar query will find it useful
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.
Hi @Edgar Pusklevic ,
you can create a automation like this
1. Create a 'Scheduled' trigger which will run everyday at a given time
2. Create 'New Condition' -> 'If / Else'
Check your conditions
- Status in 'Ready' & check that the issue has updated more than 7 days
3. Then transition your task to 'DONE'
Cheers!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Edgar Pusklevic ,
please try the following JQL :
status changed TO "Ready " BEFORE startOfDay(-7)
Hope this helps,
Fabio
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.