From 4c11e4b868edbe84dd38f32c5f08583ede24ba7e Mon Sep 17 00:00:00 2001 From: Kenichiro NOGI Date: Sat, 5 Sep 2026 15:18:51 +0900 Subject: [PATCH] =?UTF-8?q?fix(healthcheck-survey-bot):=20IF=20processId?= =?UTF-8?q?=20exists=E3=81=AE=E5=8F=82=E7=85=A7=E3=83=90=E3=82=B0=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit HEALTHCHECK_SITE_ID取得(Data Table Get)の直後で$json.processIdを直接参照 していたため、上流フィールドが置き換えられ常にundefinedと評価され、 Process実行分岐が発火しない不具合を修正。他ノードと同様に $('Execute Workflow Trigger').item.json.processIdを参照するよう変更し、 n8n(id: XRqcykbG2LuAjGG2)へ再デプロイ済み。 Co-Authored-By: Claude Sonnet 5 --- .../workflows/hc-sub-run-process-and-notify.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NodeSrv/apps/healthcheck-survey-bot/workflows/hc-sub-run-process-and-notify.json b/NodeSrv/apps/healthcheck-survey-bot/workflows/hc-sub-run-process-and-notify.json index a28eedd4..c59934c5 100644 --- a/NodeSrv/apps/healthcheck-survey-bot/workflows/hc-sub-run-process-and-notify.json +++ b/NodeSrv/apps/healthcheck-survey-bot/workflows/hc-sub-run-process-and-notify.json @@ -124,7 +124,7 @@ "conditions": [ { "id": "cond-processid-truthy", - "leftValue": "={{ !!$json.processId }}", + "leftValue": "={{ !!$('Execute Workflow Trigger').item.json.processId }}", "rightValue": true, "operator": { "type": "boolean",