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
Would like to create a JQL, that would find the issues within a fixVersion that is named for the current month release.
fixVersion ~ startOfMonth()
or
fixVersion ~ Now(format(dd/MMM/yy))
The naming convention of the fixVersion is "dd/MMM/yyyy Release" e.g"01/OCT/2023 Release"
I would like to use this query for a filter to surface the results to a dashboard gadget, so that the dashboard would only show the issue related to the current month's release.
First of all, I don't think you can do that with fixVersion. As per documentation, fix version can be compared with a string and not with a function, which returns a date field.
What you could possibly do is to parse the fixVersion name and only the date part, copy it to a custom date field and then use that date field with the startOfMonth() function. It could work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.