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.
We have a Scheduled cron expression (0 15 3 ? * MON-FRI) setup to create a FixVersion and Epic (0 20 3 ? * MON-FRI) every morning. What I'm having trouble with is linking the newly created version with the newly created Epic.
I've tried both 'next unreleased version' and 'last unreleased version' options on the Epic FixVersion field to see if I can get the field to set on the Epic, but nothing happens.
One thing I have noticed is that on the create of the fixversion, the release date isn't being set which may be the culprit. I've tried to set it multiple ways but it never gets populated:
- Leaving as blank (as it states should populate todays date but does not)
- Using the format recommended (format: yyyy-MM-dd) does nothing
- Formatting like the field displays in Jira {{now.format("dd/mm/yy")}} also does nothing
Any help is greatly appreciated!
Solved this with using JSON below in case anyone else is trying to do this:
{
"update": {
"fixVersions" : [
{
"add": {
"name" : "{{now.format("MM/dd/yyyy")}}"
}
}
]
}
Was able to solve the issue to populate the Release date now by using this syntax:
{{now.format("yyyy-MM-dd")}}
Still no luck in getting the Epic FixVersion to populate using 'last released version' or next unreleased version'.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.