fix(healthcheck-survey-bot): IF processId existsの参照バグを修正

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 <noreply@anthropic.com>
This commit is contained in:
Kenichiro NOGI 2026-09-05 15:18:51 +09:00
parent 90d057aac9
commit 4c11e4b868

View File

@ -124,7 +124,7 @@
"conditions": [
{
"id": "cond-processid-truthy",
"leftValue": "={{ !!$json.processId }}",
"leftValue": "={{ !!$('Execute Workflow Trigger').item.json.processId }}",
"rightValue": true,
"operator": {
"type": "boolean",