blob: 9782eb0b58fd9d9edde04b35206c61567c6e582d [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 recipes.fuchsia.code_search_superproject;
message InputProperties {
// Jiri manifest to use.
string manifest = 1;
// Remote manifest repository.
string remote = 2;
// Superproject sandbox repository.
string superproject_remote = 3;
// Super manifest project to update.
string super_manifest_project = 4;
// Don't push changes.
bool dry_run = 5;
// If the root of the Jiri workspace is itself a Git repository, use that
// repository as the root of the submodule workspace.
bool preserve_root = 6;
}