blob: 6c14dfa8909314f6c925c1fddddf855c18b10fd1 [file] [log] [blame]
// Copyright 2023 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 infra.roller_metadata; // `from PB.infra.roller_metadata import RollerMetadata`
option go_package = "recipes";
message RollerMetadata {
// A common CIPD ref to resolve when rolling packages.
string ref = 1;
// Whether to instruct auto-rollers to ignore the packages.
bool do_not_autoroll = 2;
// A CIPD tag prefix common to all packages where a common version can be
// extracted.
// TODO(fxbug.dev/130779): Remove once we can parse this from the to-be-rolled
// packages.
string tag = 3;
}