From 987135fb07284de18b1ddbd4c846ffbb78bf5bc7 Mon Sep 17 00:00:00 2001 From: Claude <242468646+Claude@users.noreply.github.com> Date: Thu, 11 Dec 2025 10:14:14 +1100 Subject: [PATCH] Add scheduled daily run to traffic-reporting workflow (#480) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Initial plan * feat: add daily scheduled run for traffic-reporting workflow Update traffic-reporting.yml to run both on-demand and at 1AM UTC daily 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Co-authored-by: codemillmatt <2053639+codemillmatt@users.noreply.github.com> --------- Co-authored-by: anthropic-code-agent[bot] <242468646+Claude@users.noreply.github.com> Co-authored-by: codemillmatt <2053639+codemillmatt@users.noreply.github.com> --- .github/workflows/traffic-reporting.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/traffic-reporting.yml b/.github/workflows/traffic-reporting.yml index 79512113..f8b0eb6a 100644 --- a/.github/workflows/traffic-reporting.yml +++ b/.github/workflows/traffic-reporting.yml @@ -1,8 +1,9 @@ name: Traffic Reporting on: - # Run on-demand only - workflow_dispatch: + schedule: + - cron: '0 1 * * *' # Daily at 1AM UTC + workflow_dispatch: # Manual trigger jobs: report-traffic: