blob: 99f4ed7aec7cc95d0f3eee16d42fd71b33de0613 [file] [log] [blame]
// Copyright 2020 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.create_branch;
message InputProperties {
// Revision to cut branch from.
// Mutually exclusive with `lkg_builders`.
string revision = 1;
// Builders to compute last-known-good-revision to cut branch from.
// Mutually exclusive with `revision`.
repeated string lkg_builders = 2;
// Name of branch to create. Must start with "releases/".
string target_branch = 3;
// Whether to create the branch using the "add track" feature.
// See release/api.py for more details.
bool add_track = 4;
// Enable dryrun mode: do not modify anything remotely.
bool dryrun = 5;
// Remote integration manifest repository.
string remote = 6;
// Downstream builders to display links to.
repeated string downstream_builders = 7;
// Integration project name.
string project = 8;
// Remote integration manifest name.
string manifest = 9;
// Additional projects in the Jiri checkout to initialize branches for.
repeated string projects_to_initialize = 10;
// Path to JSON file with incremental settings.
string incremental_settings_path = 11;
// Path to script which generates configurations.
string config_generator_path = 12;
}