I have a custom workflow action derived from SequenceActivity
protected override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext)
{
var current = SPContext.Current;
//current is null
}
The code I copied is largely from another custom action, which is working as expected. I definitely missed something when copying things over and creating the new action, but I am not sure where to look.