File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ type BillingService service
1919// ActionBilling represents a GitHub Action billing.
2020type ActionBilling struct {
2121 TotalMinutesUsed int `json:"total_minutes_used"`
22- TotalPaidMinutesUsed int `json:"total_paid_minutes_used"`
22+ TotalPaidMinutesUsed float64 `json:"total_paid_minutes_used"`
2323 IncludedMinutes int `json:"included_minutes"`
2424 MinutesUsedBreakdown MinutesUsedBreakdown `json:"minutes_used_breakdown"`
2525}
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ func TestBillingService_GetActionsBillingOrg(t *testing.T) {
2222 testMethod (t , r , "GET" )
2323 fmt .Fprint (w , `{
2424 "total_minutes_used": 305,
25- "total_paid_minutes_used": 0,
25+ "total_paid_minutes_used": 0.0 ,
2626 "included_minutes": 3000,
2727 "minutes_used_breakdown": {
2828 "UBUNTU": 205,
You can’t perform that action at this time.
0 commit comments