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?
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.
Thanks for the clear comment @Udo Brand
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.