blob: 81dad2eadf7b5d24e78868c088d0b8e7963e5a1c [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 recipe_modules.fuchsia.gerrit_auto_submit;
message InputProperties {
// Label to trigger auto-submission. Defaults to "Fuchsia-Auto-Submit".
string auto_submit_label = 1;
// Gerrit host to run against. Defaults to "fuchsia-review.googlesource.com".
string gerrit_host = 2;
// Hostname of tree status site.
string tree_status_host = 3;
// Maximum number of times to attempt submission. Defaults to 4.
int32 max_attempts = 4;
}