New to arduino

My arduino nano and 2ch relay module (5v controlled) came today. I've never done any programming with these before. I'm hoping someone can help with that. What I want the arduino to do is.

From a push button trigger, close relay 1 for 1 second, then open it again, wait 60mins, close relay 2 for 1 second then open it again. I understand the relay module in1 and in2 need to be connected to digital pins (say pins 7 and 8 for example) , then I program it as pin7 == high? I don't know how to get it to run from a trigger.

Please help.

Post your best effort.
In code tags.

For the question "I don't know how to get it to run from a trigger.":
digitalRead()
if

To complete the project, you will need:
digitalWrite()
delay()

And lastly you can optimise:
Delay is only useful if you really don't want the processor to do anything else. Else look into solutions with millis(); look at the blink-without-delay example, Demonstration code for several things at the same time and Using millis() for timing. A beginners guide

Go through some of the basic examples that come with the IDE and figure them out first, it will become much clearer.