We want a notification to fire when an issue is added to or removed from the sprint. This script did not work.
2015-02-05_8-51-43.png
This is the condition you need
changeItems.any{ it.field == 'Sprint' }
The goal is to send a notification when an item is moved to or removed from the Active sprint. We have multiple sprints enabled but there is only 1 sprint active at a time.
I both of these but they are not firing a notification: 2015-02-09_11-43-52.png
and
2015-02-09_11-45-17use.png
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This filter pulls up the data we need, and then if there is a change to this filter we need a notification: project = PULSE AND issuetype = Story and status = ready AND resolution = Unresolved and Sprint not in futureSprints()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The right event should be Issue Updated. Could you try to change the event from Issue Moved to Issue Updated?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Basically you are updating an issue field that reflects the current sprint. If you move your issue that field should not be affected.
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.
Since we have multiple sprints this is notifying too often. Is there a way so a notification is sent only if the issue is a Story and only if the issue is moved in/out of the active sprint? This condition does not appear to work: project = PULSE AND issuetype = Story AND status = Ready AND resolution = Unresolved and Sprint not in futureSprints()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Amy. Did you ever figure a way to accomplish a notification being sent if the issue is moved in/out of the active sprint? If so, would you mind sharing your script? Thanks!
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.
Your condition is a JQL query.
Scriptrunner handles groovy scripts so the native way should be something like:
def sprintChanged = changeItems.any{ it.field == 'Sprint' } sprintChanged && issue.projectObject?.key == "PULSE" && issue.issueTypeObject?.name == 'Story' && issue.statusObject?.name == 'Ready' && issue.resolutionObject?.name == 'Unresolved'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
AI-powered meeting notes keep work moving even if you’re out of the office. Enjoy your well-deserved time off and return refreshed, confident you’ll catch up in no time.
Learn more
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.