blob: ab70c847e2cce1b27546bfeb2749dff1fb758f31 [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.submodule_roller;
import "google/protobuf/struct.proto";
import "recipe_modules/fuchsia/auto_roller/options.proto";
message InputProperties {
// Remote URL of repository to checkout.
string remote = 1;
// Paths of submodules to roll.
repeated string submodule_paths = 2;
// General options for creating the roll CL.
recipe_modules.fuchsia.auto_roller.Options roll_options = 3;
}