매일 24h 기록 및 매주 월요일 7d 기록 알림
Some checks failed
Run Report Table / run-script (push) Failing after 11s
Some checks failed
Run Report Table / run-script (push) Failing after 11s
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user