blob: 414a2ab41d1e728590fbb24ddea5d409073cb0fd [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.cherry_pick;
message InputProperties {
// Revision to cherry-pick.
string revision = 1;
// Change-Id to cherry-pick.
// The corresponding change's latest patchset must match `revision`.
string change_id = 2;
// Target project to apply cherry-pick.
string target_project = 3;
// Name of branch to cherry-pick to. Must start with "releases/".
string target_branch = 4;
// Whether to apply revert instead of cherry-pick.
bool revert_mode = 5;
// Cherry-pick with --strategy=theirs.
bool strategy_theirs = 6;
// Enable dryrun mode: do not modify anything remotely.
bool dryrun = 7;
// Remote integration manifest name.
string manifest = 8;
// Remote integration manifest repository.
string remote = 9;
// Downstream builders to display links to.
repeated string downstream_builders = 10;
}