We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af40990 commit aa4b9cfCopy full SHA for aa4b9cf
taskcluster/kinds/push-image/kind.yml
@@ -15,8 +15,6 @@ transforms:
15
16
task-defaults:
17
worker-type: images
18
- description: "{name} image builder py{python_version}"
19
- name: "{name}-python{python_version}"
20
worker:
21
taskcluster-proxy: true
22
docker-image: {in-tree: skopeo}
taskcluster/scriptworker_taskgraph/transforms/push_image.py
@@ -12,6 +12,15 @@
12
transforms = TransformSequence()
13
14
+@transforms.add
+def set_task_description(config, tasks):
+ """Set task description"""
+ for task in tasks:
+ env = config.params.get("docker_tag") or "(unknown environment)"
+ task["description"] = f"Push {task['name']} {env} docker image to docker hub"
+ yield task
+
23
24
@transforms.add
25
def set_task_requirements(config, tasks):
26
"""Set dynamic task requirements"""
0 commit comments