blob: 1856269998e55482048e601ecc16620d77f05bca [file] [log] [blame]
// Copyright (c) 2020, the Dart project 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.dart.roller.lkgr;
import "go.chromium.org/luci/buildbucket/proto/builder.proto";
message LastKnownGoodRevision {
// The builders that are required to be green to advance the LKGR.
repeated .buildbucket.v2.BuilderID builders = 1;
// The ref to advance if the builders are green.
string ref = 2;
}