blob: d6734c8999aaa4d8ae14cdd0519f6585cf3e5fe6 [file] [log] [blame]
# Copyright 2020 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.
DEPS = [
"fuchsia/buildbucket_util",
"fuchsia/gerrit",
"fuchsia/git",
"fuchsia/utils",
"recipe_engine/buildbucket",
"recipe_engine/context",
"recipe_engine/json",
"recipe_engine/led",
"recipe_engine/random",
"recipe_engine/raw_io",
"recipe_engine/step",
"recipe_engine/time",
]
from recipe_engine.recipe_api import Property
from recipe_engine.config import Single
# TODO: move into options.proto.
PROPERTIES = {
"poll_interval_secs": Property(
kind=Single((float, int)),
default=5 * 60,
help="The interval at which to poll in seconds",
),
}