blob: ec45192c7255ff50ee36f0b2b235c524f7021290 [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.snap_branch;
message InputProperties {
// Revision to cut branch from.
// Mutually exclusive with `lkg_builders` and `source_branch`.
string revision = 1;
// Builders to compute last-known-good-revision to cut branch from.
// Mutually exclusive with `revision` and `source_branch`.
repeated string lkg_builders = 2;
// Name of branch to snap from. Must start with "releases/".
// Mutually exclusive with `revision` and `lkg_builders`.
string source_branch = 3;
// Name of branch to snap. Must start with "releases/".
string target_branch = 4;
// Whether to snap the branch using the "add track" feature.
// See release/api.py for more details.
bool add_track = 5;
// Enable rollback mode.
bool rollback = 6;
// Enable dryrun mode: do not modify anything remotely.
bool dryrun = 7;
// Integration project name.
string project = 8;
// Remote integration manifest name.
string manifest = 9;
// Remote integration manifest repository.
string remote = 10;
// Downstream builders to display links to.
repeated string downstream_builders = 11;
// Whether to skip snapping if the resolved release version's milestone number
// does not match the milestone number at HEAD.
bool must_match_milestone = 12;
// Projects to skip snapping. This is to circumvent snapping projects which
// are primarily downstream but are mirrored back into upstream for developer
// convenience.
repeated string skip_snap_projects = 13;
}