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.
is there any quick/simple/automatic way to put start/end dates according to release and the fixversion the issue is assigned with?
Specific to roadmap topic, I think the "auto schedule" button is to do what you ask asking. But you need to set it up the way adv roadmap suggests.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not sure if you are using Jira Cloud or not, but assuming you are, then using Automation would be the way to do this.
Setup a rule along the lines of:
Trigger = Field value changed (field being fix version), on edit and create.
Condition = When Fix version is not empty
Action = Edit issue (and set up the relevant date fields as follows)
{{triggerIssue.fixVersions.startDate.format("yyyy-MM-dd")}}
{{triggerIssue.fixVersions.releaseDate.format("yyyy-MM-dd")}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Footnote:
You may wanna add in conditions around not updating the dates if already populated?
Up to you,
Just thought I'd add this, as the above will overwrite any existing dates, which might be what you want, or not.
☮
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
looks great, however unfortunately I'm using server version. Hope your post will help others anyway
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.