The cron expression for every 2 hours
To run a job every 2 hours, use 0 */2 * * *. Read aloud it means: At minute 0 past every 2nd hour.
Field by field: minute 0 — minute 0; hour */2 — every 2nd hour; day of month * — every day-of-month; month * — every month; day of week * — every day-of-week.
Drop the expression into a crontab, a CI schedule, or anything else that speaks standard five-field cron syntax. The times above are in your local timezone — most cron daemons run in the server's timezone, so mind the difference when it matters.