Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Jql to find test execution with current date

Vishnu Priya June 25, 2024

I need to create a dashboard which shows test execution result.We.are creating daily test execution with the below format

Testexecution-23062024 for today and

next day it will be Testexecution-24062024

 

Instead of editing dashboard everyday ,is it possible to write a jql to dynamically pass current date like below

Like Testexecution-<current date>

 

1 answer

0 votes
Kseniia Trushnikova
Community Champion
June 26, 2024

Hey @Vishnu Priya,

Unfortunately, it's impossible to search for issues with dynamic summary using built-in Jira tools, but you can search for issues with dynamic dates. Try this JQL:

created > startOfDay()

It will return all issues that have been created today. So, if you create test executions every day, this JQL might work for you.

Suggest an answer

Log in or Sign up to answer