Files
grafana_alerts/.gitea/workflows/main.yml
kyy dde582e5af
Some checks failed
Run Report Table / run-script (push) Failing after 6s
테스트용 yml 수정
2025-09-05 10:46:55 +09:00

18 lines
357 B
YAML

name: Run Report Table
on:
schedule:
- cron: "10 2 * * *"
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