gecko-dev/taskcluster/android_taskgraph/parameters.py
Julien Cristau 907bf8d309 Bug 1825116 - android_taskgraph: ruff fixes. r=gabriel,releng-reviewers
Generated with:
`./mach lint -l ruff --fix taskcluster/android_taskgraph`

Differential Revision: https://phabricator.services.mozilla.com/D201458
2023-09-07 15:13:58 +02:00

29 lines
723 B
Python

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from gecko_taskgraph.parameters import extend_parameters_schema
from voluptuous import Any, Required
def get_defaults(repo_root):
return {
"next_version": None,
"release_type": "",
}
extend_parameters_schema(
{
Required("next_version"): Any(str, None),
Required("release_type"): str,
},
defaults_fn=get_defaults,
)
def get_decision_parameters(graph_config, parameters):
parameters.setdefault("next_version", None)
parameters.setdefault("release_type", "")