From a95911de91d167bb21c2e57ad2b0ad218dc8b153 Mon Sep 17 00:00:00 2001 From: clown6613 Date: Sat, 20 Jun 2026 21:32:30 +0900 Subject: [PATCH] fix(workflows): send Statsig event time in milliseconds The claude-dedupe-issues workflow sent the Statsig `time` field as epoch seconds (`now | floor`) and as a string, while Statsig's /v1/log_event API expects epoch milliseconds as a number. The sibling workflow log-issue-events.yml already does this correctly via `$(date +%s)000`. Change to `now * 1000 | floor` so duplicate-comment events are timestamped in milliseconds, matching the sibling workflow. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/claude-dedupe-issues.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude-dedupe-issues.yml b/.github/workflows/claude-dedupe-issues.yml index cfbdf2db23..f78992d73a 100644 --- a/.github/workflows/claude-dedupe-issues.yml +++ b/.github/workflows/claude-dedupe-issues.yml @@ -72,7 +72,7 @@ jobs: triggered_by: $triggered_by, workflow_run_id: $workflow_run_id }, - time: (now | floor | tostring) + time: (now * 1000 | floor) }] }')