From 2c7ee46beb22dc3b052d895eb9d808eaf4751724 Mon Sep 17 00:00:00 2001 From: Nathaniel Parson Koroso Date: Wed, 8 Jul 2026 19:04:46 -0700 Subject: [PATCH] detection-proof: break pack runtime (WAS Constant Number raises) - CI-side, row 9 --- .github/workflows/ci-tests-custom-nodes.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci-tests-custom-nodes.yaml b/.github/workflows/ci-tests-custom-nodes.yaml index 88842eab05..9e1104cde2 100644 --- a/.github/workflows/ci-tests-custom-nodes.yaml +++ b/.github/workflows/ci-tests-custom-nodes.yaml @@ -139,6 +139,12 @@ jobs: f=ComfyUI/custom_nodes/ComfyUI-Custom-Scripts/web/js/showText.js perl -0pi -e "s/(onConfigure\?\.apply\(this, arguments\);)/\$1\n\t\t\t\tconsole.error('DETECTION PROOF (row 8): pack showText.js onConfigure failure');/" "$f" grep -q "DETECTION PROOF (row 8)" "$f" || { echo "::error::row 8 break did not apply"; exit 1; } + # Row 9 (execution runtime, s7): WAS `return_constant_number` raises + # on entry. Expected: auto-run tier red `Constant Number: + # EXECUTION_ERROR ... not in cannotRunAlone; a regression`. + f=ComfyUI/custom_nodes/was-node-suite-comfyui/WAS_Node_Suite.py + perl -pi -e 's/(def return_constant_number\(self, number_type, number, number_as_text=None\):)/$1\n raise ValueError("DETECTION PROOF (row 9): pack node runtime failure")/' "$f" + grep -q "DETECTION PROOF (row 9)" "$f" || { echo "::error::row 9 break did not apply"; exit 1; } # The VHS run-tier workflow reads input/plain_video.mp4. - name: Stage run-tier assets