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