summaryrefslogtreecommitdiffstats
path: root/taskcluster/gecko_taskgraph/transforms/trigger_comm_central.py
blob: a3909e37a7ef8826b2d1bf989735b7de20146d7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#  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 https://mozilla.org/MPL/2.0/.

"""
Resolve keys for the jobs defined in the trigger-comm-central kind.
"""

from taskgraph.transforms.base import TransformSequence
from taskgraph.util.schema import resolve_keyed_by

transforms = TransformSequence()


@transforms.add
def resolve_keys(config, jobs):
    for job in jobs:
        resolve_keyed_by(
            job,
            "scopes",
            item_name=job["name"],
            level=config.params["level"],
        )
        yield job