From 6165682da7f49a589ee1d7404db02ee66fe99b3b Mon Sep 17 00:00:00 2001 From: Jack Vanel <100318096+jacquesvanel@users.noreply.github.com> Date: Sun, 1 Mar 2026 17:13:37 -0600 Subject: [PATCH] updated the cron expression to run every 3 minutes --- .github/workflows/schedule.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/schedule.yml 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)"