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.
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"
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"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.