Single automation to change temp twice or three times

Hi all. I have some automations to change the temperature on my HVAC system in different zones. Generally I will change the temp higher or lower once a day, and I am using two automations to do this. For example I will run one like this to turn up the temp when I’m no using the room:

alias: Bedroom day summer
description: ""
triggers:
  - trigger: time
    at: "08:00:00"
conditions: []
actions:
  - action: climate.set_temperature
    metadata: {}
    data:
      temperature: 90
      hvac_mode: cool
    target:
      device_id: da13a62fa953d1abbc9972b19f90312c
mode: single

Then another automation to turn it down at bed time.

I’m sure there must be a way to do both changes in one script, but I’m still a YAML noob. How do I do this? How about to make three changes per day?

Research triggers. You can setup as. Many triggers on an automation you want. You can name a trigger so when it fires you know which trigger fired it.

Conditions restrict activities

Choose blocks let you react on a case (like which trigger)

So pull all the triggers into one automation pull all the vars in, then conditions and choose blocks guide your automation from that point on.