blob: 750939c7b84f3c85f5c6e5dd0cfef1e898d15830 [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;
}