blob: e8256939c67fd17f07880f508b817c5e919cc248 [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.buildbucket_trigger;
message InputProps {
// List of builders to trigger.
repeated string builders = 1;
// Delay between requests when waiting.
int32 interval = 2;
// Time to wait for the builds to end.
int32 timeout = 3;
}