Hi - we currently have an active workflow where we are tracking a number of bugs that have been fixed but not yet released. The status they are sitting in right now is "released" because a "ready for release" status was not included in the workflow when it was created. This workflow is shared by two projects.
1. The customer asked if I could add the status of "ready for release" but I can't edit an active workflow correct?
2. Is there a way to add a resolution of "ready for release" to the issues created by this workflow and bulk update all the issues that need to be in "ready for release" versus "released"?
I had the need as the original post and found an "out of the box" solution in another post...
From Alain Boss' answer to this post:
First you create a filter for your epics as desired --> My Epic Filter
You can then use the issuefunction. Because the filter contains whitespace, you have to quote the name and because it is used within double quotes you have to use single quotes.
issueFunction in linkedIssuesOf("filter = 'My Epic Filter'", "is epic of") OR filter = "My Epic Filter"With the OR-part you will get the epics as well.
"~" operator can be used with text fields like Summary, Comments, .. Try using "Epic Name" which is actually a better choice instead od "Epic Link".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Right, but I am not searching/filtering for the epics. I want to filter the stories and tasks that belong to a given epic. Those don't have an "epic name" field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, but I am not looking for any specific parents, though. I am trying to find all epics that contain a specific word. Neither "epic link" or "parent" allow the contains operator.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think this is possible without the help of a plugin such as ScriptRunner. See this question: https://community.atlassian.com/t5/Jira-questions/Searching-for-subtasks-of-parents-that-meet-certain-criteria/qaq-p/39736
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah, I saw that when searching previously, but as it often appears to be the case, almost anything useful in JIRA requires an extra paid plugin; and given that we run JIRA Cloud, it also means exposing all of your data to random external companies you know nothing about.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not that this helps with the money part, but in my company when someone asks for an add-on we have a lightweight InfoSec audit where we ask the vendor things like:
- do you store any data outside the Jira instance, encryption at rest, etc.
- what is your data sharing policy
- how do you handle regional privacy issues such as GDPR
etc. Most of the good vendors will have prepared answers on those or are happy to help you feel satisfied.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think it's possible with this (if I understand what Kiril is trying to do correct):
From Alain Boss' answer to this post:
First you create a filter for your epics as desired --> My Epic Filter
You can then use the issuefunction. Because the filter contains whitespace, you have to quote the name and because it is used within double quotes you have to use single quotes.
issueFunction in linkedIssuesOf("filter = 'My Epic Filter'", "is epic of") OR filter = "My Epic Filter"With the OR-part you will get the epics as well.
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.