Skip to content

Commit d430c7b

Browse files
committed
Use dashed identifiers in YAML schema (task-id not taskId)
1 parent 8977fcc commit d430c7b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/taskgraph/transforms/docker_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
IMAGE_BUILDER_IMAGE = {
3131
"path": "public/image.tar.zst",
3232
"type": "task-image",
33-
"taskId": "EbA_upYqQn6GSpUS7t1TLw"
33+
"task-id": "EbA_upYqQn6GSpUS7t1TLw"
3434
}
3535

3636
transforms = TransformSequence()

src/taskgraph/transforms/task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ def verify_index(config, index):
490490
# an indexed docker image
491491
{"indexed": str},
492492
# an external task image
493-
{"path": str, "type": str, "taskId": str},
493+
{"path": str, "type": str, "task-id": str},
494494
),
495495
# worker features that should be enabled
496496
Required("relengapi-proxy"): bool,

0 commit comments

Comments
 (0)