Empty Action
The Empty Action analyzer detects actions that contain nothing but a start node, meaning no actual logic has been added yet.
An action with only a start node does nothing when triggered. This is usually a sign of an incomplete action that was created but never finished.
How to fix it
Add at least one function instance after the start node to give your action something to do.
Severity
Minor - the action won't crash, but it also won't do anything useful.