From 6d58643548a51dead050c3848a77ebdc2283f239 Mon Sep 17 00:00:00 2001 From: Tyler Burton Date: Wed, 11 Dec 2024 17:18:20 -0600 Subject: [PATCH] runs on 2nd day of month to account for GA4 report latency --- .github/workflows/build-metrics-report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-metrics-report.yml b/.github/workflows/build-metrics-report.yml index 267b4a12f..4cf681972 100644 --- a/.github/workflows/build-metrics-report.yml +++ b/.github/workflows/build-metrics-report.yml @@ -3,7 +3,7 @@ name: Build Metrics Report on: # yamllint disable-line rule:truthy workflow_dispatch: schedule: - - cron: "0 0 1 * *" # runs first day of every month at 12am UTC + - cron: "0 0 2 * *" # Runs at 00:00 UTC on 2nd day of the month - to account for GA4 reporting latency env: PY_VERSION: "3.10"