blob: 0e7fa63e6b9e0a9f84e3692bbc5fc047352ce4e0 [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 JSON file with size creep settings.
string size_creep_settings_path = 12;
// Path to script which generates configurations.
string config_generator_path = 13;
// The increment to be added to a new candidate version.
// {major}.{date}.{release}.{candidate}.
int32 candidate_version_increment = 14;
// The initial value of a new release version.
// {major}.{date}.{release}.{candidate}
int32 release_version_initialization = 15;
}