blob: b8e32f1cf8225c275e62d17b6790ae6aa4eba44d [file] [log] [blame]
// Copyright 2021 The Pigweed Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
syntax = "proto3";
package recipes.pigweed.cq_label;
message InputProperties {
// TODO(b/231587812) Remove
// [DEPRECATED] Name of the Gerrit host.
string host = 1;
// TODO(b/231587812) Remove
// [DEPRECATED] Name of the project on the Gerrit host.
string project = 2;
// The account that posts CQ results.
string cq_account = 3;
// The label to set when CQ is complete.
string label = 4;
// Don't do anything with external effocts.
bool dry_run = 5;
// Repositories to watch.
repeated string repo = 6;
}