bugsnag-notification-plugins
Version:
Notification plugins (chat and issue tracking integrations) for Bugsnag.
52 lines (51 loc) • 1.35 kB
JSON
{
"name": "Bitbucket Issues",
"url": "https://bitbucket.org",
"actions": {
"create": "Create a Bitbucket issue",
"view": "View on Bitbucket",
"object": "Bitbucket Issue"
},
"type": "issueTracker",
"fields": [
{
"name": "username",
"label": "Username",
"description": "Your Bitbucket username",
"section": "authentication"
},
{
"name": "password",
"label": "Password",
"description": "Your Bitbucket password",
"type": "password",
"section": "authentication"
},
{
"name": "repo",
"label": "Repository",
"description": "Which Bitbucket repository to create the issue on, eg rails/rails",
"section": "authentication"
},
{
"name": "kind",
"label": "Issue Kind",
"description": "The kind of issue to be created",
"type": "select",
"allowedValues": ["bug", "task", "proposal", "enhancement"],
"defaultValue": "bug",
"optional": true,
"section": "tags"
},
{
"name": "priority",
"label": "Issue Priority",
"description": "The priority of the issue to be created",
"type": "select",
"allowedValues": ["blocker", "critical", "major", "minor", "trivial"],
"defaultValue": "critical",
"optional": true,
"section": "tags"
}
]
}