blob: 279d1e892adf9e0e16e6e6297ffff007fdc28f21 [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 {
// Name of the Gerrit host.
string host = 1;
// 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;
}