blob: 6aa99d664ad7022f5bdbac0590f6fdd97fe58ed0 [file] [log] [blame]
// Copyright 2021 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.increment_version;
message InputProperties {
// Name of branch to apply increment. Must start with "releases/".
string target_branch = 1;
// Remote integration manifest repository.
string remote = 2;
// Bug to reference in commit message.
string bug = 3;
// Enable dryrun mode: do not modify anything remotely.
bool dryrun = 4;
// Downstream builders to display links to.
repeated string downstream_builders = 5;
}