Automation is working as expected. However we have not found a way to suppress notifications when transitioning an issue. When updating an issue we are able to:
issue.update(
fields={
'labels': issue.fields.labels,
'fixVersions': versions
},
notify=False
)
but there does not seem to be an equivalent for:
def get_transition_id(issue, action):
transitions = jira.transitions(issue)
for transition in transitions:
if transition['name'] == action:
return transition['id']
transition_id_close = get_transition_id(issue, 'Close Issue')
jira.transition_issue(issue, transition_id_close) # How does one suppress notifications here?
Is there an equivalent?