Skip to content

Commit b1fac0d

Browse files
Add scheduled trigger to traffic reporting workflow (#519)
* Initial plan * Add daily schedule trigger to traffic reporting workflow - Add schedule trigger with cron expression for daily 1AM UTC execution - Keep workflow_dispatch trigger for manual runs - Fixes traffic reporting to run automatically every day Co-authored-by: codemillmatt <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: codemillmatt <[email protected]>
1 parent d929b71 commit b1fac0d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/traffic-reporting.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Traffic Reporting
22

33
on:
4+
schedule:
5+
- cron: '0 1 * * *' # Daily at 1am UTC
46
workflow_dispatch: # Manual trigger
57

68
jobs:

0 commit comments

Comments
 (0)