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