Skip to content

Run job every 5 minutes #119

Run job every 5 minutes

Run job every 5 minutes #119

Workflow file for this run

name: Run job every 5 minutes
on:
schedule:
- cron: '*/5 * * * *'
jobs:
hello_world:
runs-on: ubuntu-latest
steps:
- name: Echo current time
run: echo "The current server time is $(date)"