Daily Workflow #293
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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)" | |