From what I can find in documentation, in the config settings, and on community I don't think it is possible to give someone the ability to create a project in Jira Software without also giving them administration rights in other areas of Jira Software (i.e. a person that can create a project can also create/edit statuses, create/edit workflows, etc) - I'm asking here because I can't believe that these things can't be separated...?? - any advice appreciated!!
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.