You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.