Book Image

Hands-On Agile Software Development with JIRA

By : David Harned
Book Image

Hands-On Agile Software Development with JIRA

By: David Harned

Overview of this book

As teams scale in size, project management can get very complicated. One of the best tools to deal with this kind of problem is JIRA. This book will start by organizing your project requirements and the principles of Agile development to get you started. You will then be introduced to set up a JIRA account and the JIRA ecosystem to help you implement a dashboard for your team's work and issues. You will learn how to manage any issues and bugs that might emerge in the development stage. Going ahead, the book will help you build reports and use them to plan the releases based on the study of the reports. Towards the end, you will come across working with the gathered data and create a dashboard that helps you track the project's development.
Table of Contents (8 chapters)

Creating new boards from saved filters

In this section, we'll cover creating new boards from saved filters. Here, we'll use a saved filter and create a new JIRA board from it. In the previous sections, we discussed JQL, creating a filter from a query, and bulk changes. Now, we're going to take a look at using the same filters to create a JIRA board.

As you can see in the following screenshot, we have a query. We've actually saved this query as a filter. Let's take a look at what this query does:

Saved filters

As shown in the preceding screenshot, it's basically returning all of the items in the First Project and Second Project, and it's ordering them by the creation date, descending. That's pretty simple; it's basically saying, show all of the work items in these two projects, in this specific order.

Let's use this to create...