Description
The Copilot usage metrics report JSON includes fields that go-github does not yet unmarshal:
ai_credits_used on per-user reports (*-users-1-day, *-users-28-day)
ai_adoption_phase on per-user reports
totals_by_ai_adoption_phase on aggregated enterprise/organization daily reports
These fields are dropped by json.Unmarshal today.
References
Proposed fix
Add matching fields/types on CopilotUserDailyMetrics, CopilotUserPeriodicMetrics, and CopilotDailyMetrics, with download-path tests (same pattern as #4460).
Description
The Copilot usage metrics report JSON includes fields that
go-githubdoes not yet unmarshal:ai_credits_usedon per-user reports (*-users-1-day,*-users-28-day)ai_adoption_phaseon per-user reportstotals_by_ai_adoption_phaseon aggregated enterprise/organization daily reportsThese fields are dropped by
json.Unmarshaltoday.References
Proposed fix
Add matching fields/types on
CopilotUserDailyMetrics,CopilotUserPeriodicMetrics, andCopilotDailyMetrics, with download-path tests (same pattern as #4460).