diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml new file mode 100644 index 000000000..110eeb4dd --- /dev/null +++ b/.github/workflows/schedule.yml @@ -0,0 +1,10 @@ +on: + schedule: + - cron: '*/3 * * * *' + +jobs: + hello_world: + runs-on: centos-latest + steps: + - name: Echo current time + run: echo "The current server time is $(date)"