I'm trying to enforce a sign-off process which notifies a nominated person once an issue is created.
I've added a post function to an existing workflow that automatically assigns a person as assignee expecting them to be notified once the issue has been created. However, this doesn't appear to work this way.
The person is assigned as the first post function prior to the create event being triggered, which does assign them correctly, JIRA unfortunately doesn't notify them.
Is this a feature/bug of JIRA and is there another way of achieving notification based on specific user?
Hi @Dave Cobb
I know what you mean. Unfortunately you can't be sure which post function will run first. The fire event, or the assign issue? I've implemented a bunch of similar solution by:
Doing the above will make sure that in the first place no event is fired up. You fast transition your issue to the same status and within that new transition you fire the "Issue Create" event, which later will notify the assignee of the issue.
Hope that helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.