action appcenter_build_configurations_get { label: "buildConfigurations_get" description: "Gets the build configuration in Azure pipeline YAML format" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/branches/{branch}/export_config" encoding: json input: { type: "object" properties: { app_name: { type: "string" } branch: { type: "string" } format: { type: "string" enum: ["yaml", "json"] } owner_name: { type: "string" } } required: ["app_name", "branch", "owner_name"] additionalProperties: false } output: { description: "The build configuration in Azure pipeline YAML format" properties: { yaml: { type: "string" description: "Azure Pipelines YAML file" } } } }