@@ -79,7 +79,7 @@ func (s *BillingService) GetActionsBillingOrg(ctx context.Context, org string) (
7979 return nil , resp , err
8080 }
8181
82- return actionsOrgBilling , resp , err
82+ return actionsOrgBilling , resp , nil
8383}
8484
8585// GetPackagesBillingOrg returns the free and paid storage used for GitHub Packages in gigabytes for an Org.
@@ -98,7 +98,7 @@ func (s *BillingService) GetPackagesBillingOrg(ctx context.Context, org string)
9898 return nil , resp , err
9999 }
100100
101- return packagesOrgBilling , resp , err
101+ return packagesOrgBilling , resp , nil
102102}
103103
104104// GetStorageBillingOrg returns the estimated paid and estimated total storage used for GitHub Actions
@@ -118,7 +118,7 @@ func (s *BillingService) GetStorageBillingOrg(ctx context.Context, org string) (
118118 return nil , resp , err
119119 }
120120
121- return storageOrgBilling , resp , err
121+ return storageOrgBilling , resp , nil
122122}
123123
124124// GetAdvancedSecurityActiveCommittersOrg returns the GitHub Advanced Security active committers for an organization per repository.
@@ -137,7 +137,7 @@ func (s *BillingService) GetAdvancedSecurityActiveCommittersOrg(ctx context.Cont
137137 return nil , resp , err
138138 }
139139
140- return activeOrgCommitters , resp , err
140+ return activeOrgCommitters , resp , nil
141141}
142142
143143// GetActionsBillingUser returns the summary of the free and paid GitHub Actions minutes used for a user.
@@ -156,7 +156,7 @@ func (s *BillingService) GetActionsBillingUser(ctx context.Context, user string)
156156 return nil , resp , err
157157 }
158158
159- return actionsUserBilling , resp , err
159+ return actionsUserBilling , resp , nil
160160}
161161
162162// GetPackagesBillingUser returns the free and paid storage used for GitHub Packages in gigabytes for a user.
@@ -175,7 +175,7 @@ func (s *BillingService) GetPackagesBillingUser(ctx context.Context, user string
175175 return nil , resp , err
176176 }
177177
178- return packagesUserBilling , resp , err
178+ return packagesUserBilling , resp , nil
179179}
180180
181181// GetStorageBillingUser returns the estimated paid and estimated total storage used for GitHub Actions
@@ -195,5 +195,5 @@ func (s *BillingService) GetStorageBillingUser(ctx context.Context, user string)
195195 return nil , resp , err
196196 }
197197
198- return storageUserBilling , resp , err
198+ return storageUserBilling , resp , nil
199199}
0 commit comments