Skip to content

Daily Workflow

Daily Workflow #279

name: Daily Workflow
on:
schedule:
- cron: '0 15 * * *' # Every midnight Korean time(KST) (UTC 15:00 = KST 00:00)
# - cron: "0 12 * * 1-4" # Runs Monday through Thursday at 9:00 PM, KST(Korean time)
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run a script
run: echo "This is a daily run at $(date)"