I'm using the gitlab python api to create issues, however as we are importing them from an excel sheet, it generates ton's of emails, is there a way to silently create an issue?
import gitlab
gl = gitlab.Gitlab('http://gitlab.ourdomain.com', 'mytoken')
issue = project.issues.create('title':'test', 'assignee_username', 'mchiles', 'assignee_id': 123)
Any help appreciated