I often find myself creating conditional statements that would usually be implemented in a switch/case block, I.E. each branch checks the same input in turn, to see if it matches that specific condition.
E.G.
Begin Integer Compare : [1] Equals 1
Else If Integer Compare : [1] Equals 2
Else If Integer Compare : [1] Equals 3
End Condition
In addition, when a comparison has a logical order to it, I prefer to maintain that order when adding branches to the condition; E.G. if I wanted to check whether "1" equals "0", I'd put that at the top, changing the current "Begin" action into a "Else If" action(Likewise when removing the top branch, the first "Else If" action must be made into a "Begin" action).
Currently, either of these operations requires manually creating a "Begin" and "Else If" block separately from scratch, which can be time consuming, especially when using the condition builder.
As both actions take the exact same parameters, a context menu entry to "Change to Else If action" and "Change to Begin action" the "Begin" and "Else If" actions respectively, would make both of the above operations much less labor intensive.
EDIT: As the dropdown to change between actions within an action configuration dialog is no longer available (which is what TheThingIs was referring to as a workaround), this request gains relevance.