action appcenter_builds_list_by_branch { label: "builds_listByBranch" description: "Returns the list of builds for the branch" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/branches/{branch}/builds" encoding: json input: { type: "object" properties: { app_name: { type: "string" } branch: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "branch", "owner_name"] additionalProperties: false } output: { type: "array" description: "A list of builds" items: { required: ["id", "buildNumber", "queueTime", "status", "result", "sourceBranch", "sourceVersion"] properties: { buildNumber: { type: "string" description: "The build number" } finishTime: { type: "string" format: "dateTime" description: "The time the build was finished" } id: { type: "integer" description: "The build ID" } lastChangedDate: { type: "string" format: "dateTime" description: "The time the build status was last changed" } queueTime: { type: "string" format: "dateTime" description: "The time the build was queued" } result: { type: "string" description: "The build result" } sourceBranch: { type: "string" description: "The source branch name" } sourceVersion: { type: "string" description: "The source SHA" } startTime: { type: "string" format: "dateTime" description: "The time the build was started" } status: { type: "string" description: "The build status" } } } } }