Skip to content

Commit 707e9fe

Browse files
chore: optimize workflow schedules for better performance
- Scrape & Format: 02:00 UTC (~9 PM ET, ~6 PM PT) Catches full legislative day across all US time zones - Text Extraction: 08:00 UTC (~3 AM ET, ~12 AM PT) Off-peak hours for better GitHub Actions performance 6-hour buffer after scraping completes
1 parent 55c165d commit 707e9fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/extract-text.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Text Extraction from Bills
22

33
on:
44
schedule:
5-
- cron: "0 4 * * *" # Daily at 4 AM UTC (adjust as needed)
5+
- cron: "0 8 * * *" # Daily at 8 AM UTC (~3 AM ET, ~12 AM PT)
66
workflow_dispatch:
77

88
jobs:

.github/workflows/scrape-and-format-data.yml

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

33
on:
44
schedule:
5-
- cron: "0 23 * * *" # Daily at 11 PM UTC (adjust as needed)
5+
- cron: "0 2 * * *" # Daily at 2 AM UTC (~9 PM ET, ~6 PM PT)
66
workflow_dispatch:
77
inputs:
88
use-scrape-cache:

0 commit comments

Comments
 (0)