From 07e739dac10db185b6a5601944079c4e2048df99 Mon Sep 17 00:00:00 2001 From: Sebatian Rath Date: Wed, 28 Jan 2026 23:11:41 -0500 Subject: [PATCH] Add missing context fields in PushNewExecutionState --- core/context.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/context.go b/core/context.go index 89ebee0..f79105f 100644 --- a/core/context.go +++ b/core/context.go @@ -150,6 +150,10 @@ func (c *ExecutionState) PushNewExecutionState(parentNode NodeBaseInterface) *Ex Inputs: c.Inputs, Secrets: c.Secrets, + GhContext: c.GhContext, + GhNeeds: c.GhNeeds, + GhMatrix: c.GhMatrix, + OutputCacheLock: &sync.RWMutex{}, DataOutputCache: make(map[string]any), ExecutionOutputCache: make(map[string]any),