Activity board filter

Loviza Lindström May 4, 2023

I want to create a filter with a specfic project and source (no issue)but filter all issues that has had a change of status or a comment added in the last 24 hours. The reason is that the Activity list gadget doesn't offer neccessary filtration.

Comment seems to be the hardest, as it is a Field and free text. Using it as a field, I need to use the CONTAINS operator, but what comes before?

project = project1 AND source = SOURCE1 AND updated = (what to enter) AND (what to enter) CONTAINS "comment"

1 answer

0 votes
Carlos Garcia Navarro
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 4, 2023

Hi @Loviza Lindström ,

Welcome to the Community! If you have ScriptRunner you can use this for issues that were commented in the last 24h:

"issueFunction in commented("after -24h")"

You can use this query to filter the issues that changed status:

"status changed from (A) to (B) after -24h"


Or a JQL clause that will pull all the issues that were updated:


"updated < -24h"

Suggest an answer

Log in or Sign up to answer