From 3a9b2bf86caea92239a7601943b16970dc6a09e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=9F=E6=9C=88?= Date: Sun, 31 May 2026 19:07:00 +0800 Subject: [PATCH] fix: add containerName to reporter frontmatter for cleanup routing Workflow validation failed because reporter's graph edges reference {{{containerName}}} but reporter's frontmatter didn't include the field. --- .workflows/e2e-check.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.workflows/e2e-check.yaml b/.workflows/e2e-check.yaml index 9a9d734..ba071ad 100644 --- a/.workflows/e2e-check.yaml +++ b/.workflows/e2e-check.yaml @@ -348,6 +348,7 @@ roles: ``` 4. Collect created issue numbers + 5. Include the containerName from your input in your frontmatter output (needed for cleanup) output: "List created issues. Set $status." frontmatter: @@ -358,13 +359,15 @@ roles: issues: type: array items: { type: string } - required: [$status, issues] + containerName: { type: string } + required: [$status, issues, containerName] - type: object properties: $status: { const: "partial" } created: { type: number } failed: { type: number } - required: [$status, created, failed] + containerName: { type: string } + required: [$status, created, failed, containerName] cleanup: description: "Stops and removes the Docker container" -- 2.43.0