blob: 11930480b28d13fc1783d3838e3a40d0d26575aa [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.release.init_project_branch;
message InputProperties {
// Name of branch to create. Must start with "releases/".
string target_branch = 1;
// Enable dry run mode: do not modify anything remotely.
bool dryrun = 2;
// Remote to check out.
string remote = 3;
// Remote integration manifest name.
string manifest = 4;
// Integration project name.
string project = 5;
// Names of projects for which the branch should be created.
repeated string projects = 6;
}