From b1fac0d0a1a30f0137eef2c8cbdc75a14616d24a Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Dec 2025 14:26:13 -0800 Subject: [PATCH] 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 <2053639+codemillmatt@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: codemillmatt <2053639+codemillmatt@users.noreply.github.com> --- .github/workflows/traffic-reporting.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/traffic-reporting.yml b/.github/workflows/traffic-reporting.yml index d72fcdf6..d14055c3 100644 --- a/.github/workflows/traffic-reporting.yml +++ b/.github/workflows/traffic-reporting.yml @@ -1,6 +1,8 @@ name: Traffic Reporting on: + schedule: + - cron: '0 1 * * *' # Daily at 1am UTC workflow_dispatch: # Manual trigger jobs: