action appcenter_bug_tracker_get_repo_issue_from_crash { label: "bugTracker_getRepoIssueFromCrash" description: "Get project issue related to a crash group" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/bugtracker/crashGroup/{crash_group_id}" encoding: json input: { type: "object" properties: { app_name: { type: "string" } crash_group_id: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "crash_group_id", "owner_name"] additionalProperties: false } output: { description: "Object returned in response to getting a bug tracker issue related to a crash group id" properties: { bug_tracker_type: { type: "string" enum: ["github", "vsts", "jira"] } event_type: { type: "string" } id: { type: "string" } mobile_center_id: { type: "string" } repo_name: { type: "string" } title: { type: "string" } url: { type: "string" } } } }