action opensuse_post_build_project_name { label: "Apply different actions on builds/build processes of the specified project" description: "Apply different actions on builds/build processes of the specified project" provider: opensuse method: POST path: "/build/{project_name}" encoding: json input: { type: "object" properties: { arch: { type: "string" } cmd: { type: "string" enum: ["wipe", "restartbuild", "killbuild", "abortbuild", "rebuild", "unpublish", "sendsysrq"] } package: { type: "string" } repository: { type: "string" } } required: ["cmd"] additionalProperties: false } output: { type: "object" additionalProperties: true } }