JIRA Slack integration

Christopher Yip June 22, 2016

Hi there, 

I added an integration (see below) to get live notification of activities on Slack which has been useful. This has been particularly helpful when tickets are raised, and when tickets are closed. 

I was wondering if I could get some help for some specific activities I'd like to have live notifications for. 

 

  1. Flagged tickets. I'd like to have a live update when tickets are flagged.

  2. Flow of tickets across the board.

Please assist

 

 

2 answers

0 votes
Jessie June 28, 2018

Hi, did you ever figure out a way to get slack notifications for when tickets are flagged? That would be very useful 

0 votes
Vladimir Horev _Raley_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 18, 2016

Hi Christopher,

You can get Slack notifications when tickets flow across the board (change their statuses) using our add on (https://marketplace.atlassian.com/plugins/net.vacom.jirassimo/server/overview)

The idea here is that you need to create a messenger per status transition and specify a message template like this:

{{#issues}} 
    {{#lastchange.items}} 
        {{#equals first=field second="status"}} 
            {{#equals first=fromString second="StatusA"}} 
                {{#equals first=fromString second="StatusB"}} 
                    Issue {{key}} transitioned from StatusA to StatusB
                {{/equals}}
            {{/equals}}
        {{/equals}} 
    {{/lastchange.items}} 
{{/issues}}

 

 

Suggest an answer

Log in or Sign up to answer