blob: 2fa055d62807751464b420ca67b3a9a1141e783e [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package recipes.fuchsia.toolchain_trigger;
message InputProps {
// List of toolchain builders to trigger.
repeated string builders = 1;
// List of triggers to trigger.
repeated string triggers = 2;
// Bucket for builders.
string bucket = 3;
// Delay between requests when waiting.
int32 interval = 4;
// Time to wait for the builds to end.
int32 timeout = 5;
// Whether to enforce the child build has revision output.
bool enforce_output = 6;
}