Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×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.