Skip to content

Commit 41d4d8a

Browse files
Change cron schedule for traffic extraction workflow
Updated the schedule to run the traffic extraction script at 06:30am UTC daily.
1 parent 584f412 commit 41d4d8a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/traffic.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ on:
1111
# - main
1212

1313
schedule:
14-
- cron: '45 0 * * *' # Runs at 12:45am UTC every day
14+
# - cron: '45 0 * * *' # Runs at 12:45am UTC every day
15+
- cron: '30 6 * * *' # Runs at 06:30am UTC every day
1516

1617
jobs:
1718
extract-data:
@@ -32,3 +33,4 @@ jobs:
3233
env:
3334
TOKEN: ${{ secrets.DATA_TOKEN }}
3435
run: python src/traffic.py # Extract GitHub traffic and append to CSV
36+

0 commit comments

Comments
 (0)