For example, you can use the Jira Issue Navigator and archive all "Done" issues and "Won't do" issues. You can even set up an automation rule to run a certain JQL periodically and archive the resulted issues. It allows for a more dynamic archiving workflow. All issue information stays ...
In our use case, we would like to link more than 1 issue to the given JPD issue but the system does not let us select them altogether. So I need to Select the linking relation and add one issue at a time. Is there a way to change this behavio...
You can use the REST API in Jira to return all issues, in this case, it would probably be best to use the endpoint GET /rest/api/2/search - Jira Server (for Cloud GET /rest/api/3/search) In this case, you can just make a rest call to this endpoint, if you don't ...
In this tutorial, we'll explain how to work with issues in Jira. Note that the team rituals you do outside Jira - like sprint planning meetings, retros, and daily standups - won't be covered here. You can read up on those inHow to do scrum with Jira. Time: 10 minute read. Audie...
(i.id)AS"Worklog entries"FROMworklog wJOINjiraissue iONi.id=w.issueidJOINproject pONp.id=i.project-- WHERE p.pkey = 'JIRA' AND i.issuenum = 12345 -- For Issue JIRA-12345-- WHERE i.id in (10012, 12010, 12344) -- for Issues IdsGROUPBYi.id,p.pkey,i.issuenumHAVINGcount(i.id)...
Basics of JIRA Tool JIRA in its entirety is based on 3 concepts. Issue:Every task, bug, enhancement request; basically anything to be created and tracked is considered an Issue. Project:A collection of issues Workflow:A workflow is simply the series of steps an issue goes through starting fr...
“blocks”, “has to be done after”, “related to”, and more. These are not only labels, but actually function as they are read. So, if you define an issue to be done before or after another specific issue and you try to close an issue wrongly, JIRA will notify you that ...
The task won't be able to move to "Done" until all the subtasks are complete as well. Sub-tasks don't appear on the board but are listed on the issues they belong to. See Creating issues and subtasks. Customize issues The table below shows the specifications for default issues ...
Issuesare the building blocks of your Jira project. An issue can represent a story, epic, bug, feature to be built, or any other task in your project. Select “Create” in the top navigation. Your issue will appear in the backlog or board of the project. ...
Enter "Transition issue to "Done" as committer" to the Description field. Enter this Groovy script: import com.atlassian.jira.component.ComponentAccessor def issueService = ComponentAccessor.issueService if (!issues) { return } def sourceStatusId = jiraHelper.getStatusByName("In Progress...