feat(client): add repository actions secret

#7
This commit is contained in:
Julien Dessaux 2025-05-22 00:29:45 +02:00
parent ef2711acad
commit 908105f643
Signed by: adyxax
GPG key ID: F92E51B86E07177E
4 changed files with 51 additions and 6 deletions

View file

@ -114,7 +114,7 @@ func (c *Client) RepositoriesList(ctx context.Context) ([]Repository, error) {
for {
query.Set("page", strconv.Itoa(page))
uriRef.RawQuery = query.Encode()
count, err := c.Send(ctx, "GET", &uriRef, nil, &response)
count, err := c.send(ctx, "GET", &uriRef, nil, &response)
if err != nil {
return nil, fmt.Errorf("failed to search repositories: %w", err)
}