diff --git a/.github/workflows/schedule_test.yml b/.github/workflows/schedule_test.yml new file mode 100644 index 0000000..cb98396 --- /dev/null +++ b/.github/workflows/schedule_test.yml @@ -0,0 +1,18 @@ +name: Cron Job + +on: + schedule: + - cron: "18 12 * * *" + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Run cron job + run: | + # Add your cron job command here + echo "Running cron job at $(date)"