lets say workflow has 2 steps: delay 1 hour and then sms with skip if subscriber.data.isAllowed == false. Workflow was triggered and at that moment isAllowed for particular sub was false, but after 30 mins isAllowed was updated to true. When the workflow reaches sms, which isAllowed value it will use: update(true) or the one that was at the triggering moment(false)?
Added this usecase