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 folks!
I want to insert a subfilter to clear from the board all cards moved to Done after a while.
I guess the best way is working with ResolutionDate once I can get them by this parameter.
But the thing is that I want that happening on each Thursday, skipping a week.
For instance, let pretend that today is Thursday and the Done column got cleared by this rule. I want that it happens again in 14 days (2 Thursdays ahead).
What would be the best JQL expression to insert in the subfilter?
Thank you in advance!
Hi @Vitor Seabra My name is Habib I will do my best to help with the request:
resolutiondate >= startOfWeek("-2w") and resolutiondate < startOfWeek("-1w")
To create the automation in Jira with the specified condition, you can follow these steps:
1. Log in to your Jira account.
2. Go to the project and setting scroll down to Automation
```
{
"actions": [
{
"action": "updateIssue",
"params": {
"status": {
"id": "done"
}
}
}
],
"conditions": [
{
"condition": "issueMatches",
"params": {
"jql": ""
}
}
],
"name": "",
"description": ""
}
```
Replace `` with your actual JQL query that matches the issues you want to update, and replace `` and `` with your desired values.
Amazing, Habib! Thank you so much!
My only concern using StartofWeek would be that it aims to Mondays and I want my process looking for Thursdays as the clearing trigger. Would that work in this way?
Regards.
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.