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 have automation for a BAU in my company
Weekly BAU-Monthly BAU-Quarterly BAU and also the Annually BAU.
I use {{july.OfTheMonth(2, 5)}} and didn't work also I pick a date, but I assumed that date I should change every year manually.
Is there any JQL for this?
Hi Daniela,
The only way I can think of (without third-party apps) is using startOfYear(INC) function.
The issue with INC is that it only accepts a single parameter type Year/Month/Week .. (+/-)nn(y|M|w|d|h|m)
So the best way to do this is using days and 15th of July is exactly 195 days more than 1st of January. Thus, the following query should do the trick:
created >= startOfYear("195d") and created <= startOfYear("196d")
Best,
Sayed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.