cron 正時1時間ごと、10分ごとの書式

正時1時間ごとに実行 0 */1 * * *

正時10分ごとに実行 */10 * * * *

*    *    *    *    *    *
┬    ┬    ┬    ┬    ┬    ┬
│    │    │    │    │    |
│    │    │    │    │    └ day of week (0 - 7) (0 or 7 is Sun)
│    │    │    │    └───── month (1 - 12)
│    │    │    └────────── day of month (1 - 31)
│    │    └─────────────── hour (0 - 23)
│    └──────────────────── minute (0 - 59)
└───────────────────────── second (0 - 59, OPTIONAL)

https://crontab.guru/

60分/秒、24時という単位は使えないので注意 qiita.com