Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to disconnect JIRA-bot from Slack channel?

Tylo Choi
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
April 23, 2018

I want to delete JIRA-bot from the member of a Slack channel.

I  have removed JIRA App and also removed the configuration. However, JIRA-bot is not kicked out from Slack channel. 

How to disconnect JIRA-bot from Slack channel?

1 answer

1 accepted

3 votes
Answer accepted
Udo Brand
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 Champions.
January 5, 2014

I'm not sure if this will boost your performance, however I believe a "=" or "!=" is faster than an "in" operator. So you could try:

project = VMC AND issuetype = Feature AND fixVersion = "Release 2.4" AND issue not in linkedIssuesFromQuery("project = VMC and issuetype = Story and status != Closed") AND issue in linkedIssuesFromQuery("project = VMC and issuetype = Story and status = Closed")

You can achieve the same result via script runner plugin there I would use

project = VMC AND issuetype = Feature AND fixVersion = "Release 2.4" AND issuefunction in hasLinks("<YourLinkName>") and not issuefunction in linkedIssuesOf("project = VMC and issuetype = Story and status != Closed","<YourLinkName>")

But I don't know which would be faster.

ScottW
January 7, 2014

Thank you. I used the script runner solution and it ran in seconds. Thank you!

Prakash
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 12, 2019

Thanks for the clear comment @Udo Brand 

Suggest an answer

Log in or Sign up to answer