Skip to content

Commit 470701a

Browse files
committed
chore: GitHub Actions 실행 주기 조정
- collect-realtime: 15분마다(24시간) → 1시간마다(운행시간 05:00~00:59 KST만) - collect-environment: 매시간 → 3시간마다 GitHub Actions 무료 플랜 분(minutes) 한도 준수 및 불필요한 리소스 사용 절감 https://claude.ai/code/session_01PLrPbYeCgEphovNQ25PLBk
1 parent 28c595c commit 470701a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/collect-environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Collect Environment Data
22

33
on:
44
schedule:
5-
- cron: '0 * * * *'
5+
- cron: '0 */3 * * *' # Every 3 hours
66
workflow_dispatch:
77

88
permissions:

.github/workflows/collect-realtime.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Collect Realtime Facility Status
22

33
on:
44
schedule:
5-
- cron: '*/15 * * * *'
5+
- cron: '0 20-15 * * *' # Every hour during Seoul Metro operating hours (05:00~00:59 KST, UTC+9)
66
workflow_dispatch:
77

88
permissions:

0 commit comments

Comments
 (0)