Hi,
I'm trying to trigger a webhook with only one condition : when a ticket is moved from any project to a specific one (new_project).
I tested several configurations, JQL mixed with related events, but nothing works.
The MOVE is an action not a transition, I could use project name, project key or workflow to specify the change.
Something like
- JQL : project CHANGED TO new_project
- Event : issue updated
Is there a way to configure this trigger ? Thanks a lot for your help.
Thomas
Hi Thomas,
From what I read, Jira server alerts in Slack only work on status changes. So if the update doesn't also change the status of the issue, it's a no go.
:-(
While Jira does not natively support this feature, it it quite simple to setup using something like https://www.integromat.com/
We have created a webhook listener for Jira "Watch Issues" that filters with the JQL Result = Done. This triggers the webhook everytime an issue changes that is Done. However this also triggers the webhook when you i.e. change the title of a Done issue. This can be resolved by making a filter immediately after the trigger in Integromat that filters only if the changelog includes the status field
In the specific case we did: When ever an issue is Done we post a message in slack that says: Woohoo the "issue" is done by "the developer" and then a new message in the thread with a Giphy success image
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you Susan.
Indeed, still no solution to detect a ticket moved or a specific field update (eg. if a priority is updated to blocker). The purpose was to build an alert system triggered by some ticket's changes, but these cases can't be handled and some holes persist in the system...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To the contrary, something like this would work as JQL in your Webhook settings:
("Impact Area" not in (Test) AND ((created >= -1m AND priority = "Blocker (Sev 1)") OR priority changed TO "Blocker (Sev 1)" AFTER -1m))
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.