blob: 03763858bfa5047fc74506d16d1da95544be554a [file] [log] [blame]
// Copyright 2022 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.cipd_integration_tagger;
message InputProperties {
// Jiri manifest to use.
string manifest = 1;
// Remote manifest repository.
string remote = 2;
// List of CIPD packages to set <ref> on.
repeated string packages = 3;
// Ref to set on the CIPD packages.
string ref = 4;
}