I'm looking to receive a notification in Slack when a JIRA issue moves from one project to another. Is there an easy way to do this? Do the projects need to have the same workflow scheme?
Hi Hillary,
You can achieve it with our add on Jirassimo
https://marketplace.atlassian.com/plugins/net.vacom.jirassimo/cloud/overview
With the following template (event issue_updated)
#foreach ($issue in $issues)
#foreach ($item in $issue.lastchange.items)
#if ($item.field == "project" and $item.fromString == "Source Project Name" and $item.toString == "TARGET_PROJECT_KEY")
$issue.key was changed from $item.fromString to $item.toString
#end
#end
#end
Cheers,
Vladimir
Vladimir, is there a way to set up this template so that you don't have to specify the source project? We use multiple projects and I only want to monitor tickets that have been moved into my project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Monica Farrell Yes, absolutely. Just try the following:
#if ($item.field == "project" and $item.fromString != "Source Project Name" and $item.toString == "TARGET_PROJECT_KEY")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.