blob: eff04db675b1707b2780d3a7f00bb775aec892dc [file] [log] [blame]
// Copyright 2021 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.tool_metadata; // `from PB.infra.tool_metadata import ToolMetadata`
option go_package = "recipes";
message ToolMetadata {
// CIPD path of the tool.
string path = 1;
// CIPD version of the tool.
string version = 2;
// Whether to instruct autorollers to ignore the tool.
bool do_not_autoroll = 3;
}