Fixversion changes weekly, for example this week fixVersion is like 20180629 and next week fix version be like 20180706. How I create a filter with fixversion as latest week.
Hi Saikiran,
depending on when/how you create and release your versions. Have you had a look at the available JQL functions unreleasedVersions() / earliestUnreleasedVersion() to build a dynamic filter in Jira?
Thanks this is working.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Glad to hear you were able to solve that with built-in features! :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
You can use Jira Rest Api to automate this task. You can use PUT /rest/api/2/filter/{id}
to change the query of this filter every week. You can find more info here:
Or if you have ScriptRunner you could create a listener for the VersionCreatedEvent and in this listener change the query of the filter.
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.