blob: 99d6af25af7dba367180c0a5b6eb81be4b23526f [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.contrib.buildbucket_trigger;
message InputProperties {
// 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;
}