blob: b04c5a80b9e7e014dfe2cd96afa9b9aa43d9e55b [file] [log] [blame]
// Copyright 2019 The LUCI Authors. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
syntax = "proto3";
package recipe_modules.recipe_engine.runtime;
message InputProperties {
// Whether build is running in experimental mod.
// TODO(iannucci,yiwzhang): replace this with
//
// `"luci.non_production" in api.buildbucket.build.input.experiments`
//
// and then delete the runtime module.
bool is_experimental = 1;
}