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 announcements in JIRA


This recipe shows you how to create system announcements in JIRA to display important messages to users.

How to do it…

Perform the following steps to add an announcement message in JIRA:

  1. Navigate to Administration | System | Announcement Banner.

  2. Enter the following announcement message (you can use any valid HTML, CSS, and JavaScript):

    <div class="aui-message warning">
        <span class="aui-icon icon-warning"></span>
        <p>JIRA will be down on <b>Friday 7PM</b> for a planned upgrade. Please make sure you save all your work.</p>
    </div>
  3. Select whether the message will be private (only shown to logged-in users) or public.

  4. Click on Set Banner to create the announcement:

There's more…

The built-in system announcement feature is simple and handy to create ad-hoc announcement messages. Since you can use any valid HTML tags, you need to make sure you close your tags properly. Otherwise, this can lead to JIRA being unable to render...