Files
grafana_alerts/.gitea/workflows/main.yml
kyy fa1a259f5b
Some checks failed
Run Report Table / run-script (push) Failing after 11s
매일 24h 기록 및 매주 월요일 7d 기록 알림
2025-09-04 15:56:05 +09:00

18 lines
382 B
YAML

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