Book Image

JIRA 6.x Administration Cookbook

By : Patrick Li
Book Image

JIRA 6.x Administration Cookbook

By: Patrick Li

Overview of this book

Table of Contents (16 chapters)
JIRA 6.x Administration Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Creating a new workflow


A workflow is like a flowchart, in which issues can go from one state to another by following the direction paths between the states. In JIRA's workflow terminology, the states are called statuses, and the paths are called transitions; we will use these two major components when creating a workflow.

In this recipe, we will create a new, simple workflow from scratch. We will look at how to use existing statuses, create new statuses, and link them together using transitions.

How to do it…

The first step is to create a new skeleton workflow in JIRA:

  1. Log in to JIRA as a JIRA administrator.

  2. Navigate to Administration | Issues | Workflows.

  3. Click on the Add Workflow button and name the workflow Simple Workflow.

  4. Click on the Diagram button to use the workflow designer, or diagram mode.

The following screenshot explains some of the key elements of the workflow designer:

As of now, we have created a new, inactive workflow. The next step is to add various statuses for the issues to...