We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Referring to this issue: integrations/terraform-provider-github#793
In the Terraform AWS Provider we make a call to:
client.Actions.ListSelectedReposForOrgSecret
But based on the API it will only return 30 results per page and we need to paginate over the rest to get the full list of repositories.
ListSelectedReposForOrgSecret however does not support passing in ListOptions to do this.
The text was updated successfully, but these errors were encountered:
Add ListOptions to ListSelectedReposForOrgSecret (#1883)
edaee9a
Fixes: #1882.
gmlewis
Successfully merging a pull request may close this issue.
Referring to this issue:
integrations/terraform-provider-github#793
In the Terraform AWS Provider we make a call to:
But based on the API it will only return 30 results per page and we need to paginate over the rest to get the full list of repositories.
ListSelectedReposForOrgSecret however does not support passing in ListOptions to do this.
The text was updated successfully, but these errors were encountered: