action opensuse_get_build_project_repository_architecture_package_file { label: "Return a specific artifact file contents" description: "Given a project, repository, architecture and package, retrieve the given file's content.\n" provider: opensuse method: GET path: "/build/{project_name}/{repository_name}/{architecture_name}/{package_name}/{file_name}" encoding: json input: { type: "object" properties: { file_name: { type: "string" } } required: ["file_name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }