매일 24h 기록 및 매주 월요일 7d 기록 알림
Some checks failed
Run Report Table / run-script (push) Failing after 11s

This commit is contained in:
kyy
2025-09-04 15:56:05 +09:00
parent f1f82aa1eb
commit fa1a259f5b
2 changed files with 9 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
name: Run Report Table
on:
schedule:
- cron: '0 21 * * *' # 06:00 KST is 21:00 UTC
- cron: "0 21 * * *" # 06:00 KST is 21:00 UTC
jobs:
run-script:
runs-on: ubuntu-latest
@@ -9,4 +9,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Run script
run: ./run_table.sh
run: |
if [ $(date -u +%u) -eq 1 ]; then
./run_table.sh 7d
else
./run_table.sh 24h
fi