I'm trying to create a rule which will turn a Kasa color bulb a certain color depending on the month. I have several actions, but I don't see how to connect them to the conditions I've defined. For example orange in October, green in December, and red in July. Am I going about this the wrong way?
You need to use conditional statements -- IF THEN ELSE.
IF (Between July 1 and July 31) THEN
do one thing
ELSE IF (Between October 1 and October 31) THEN
do two thing
ELSE IF (Between December 1 and December 31) THEN
do three thing
END-IF
You need to add logic in the actions that use the conditions you set...
For instance, add an "if-then" above the red action, using the condition you set. Then add an "elseif" before the green action, and another "elseif" before the orange action. Then add an endif at the end.