GitHub organization repositories#3243
Conversation
|
👋 Hi! Thank you for this contribution! Just to let you know, our GitHub SDK team does a round of issue and PR reviews twice a week, every Monday and Friday! We have a process in place for prioritizing and responding to your input. Because you are a part of this community please feel free to comment, add to, or pick up any issues/PRs that are labeled with |
|
|
||
| func dataSourceGithubOrganizationRepositories() *schema.Resource { | ||
| return &schema.Resource{ | ||
| Read: dataSourceGithubOrganizationRepositoriesRead, |
There was a problem hiding this comment.
Please use the Context-aware functions
| Read: dataSourceGithubOrganizationRepositoriesRead, | |
| ReadContext: dataSourceGithubOrganizationRepositoriesRead, |
| return &schema.Resource{ | ||
| Read: dataSourceGithubOrganizationRepositoriesRead, | ||
| Schema: map[string]*schema.Schema{ | ||
| "repositories": { |
There was a problem hiding this comment.
Could you add the ignore_archived_repositories functionality into this? https://github.com/integrations/terraform-provider-github/blob/main/github/data_source_github_organization.go#L22-L26
Resolves #2484, supersedes #2485 which I cannot reopen
Before the change?
see issue
After the change?
github_organization_repositoriesdata source providing details about all repositories in an organizationPull request checklist
Does this introduce a breaking change?
Please see our docs on breaking changes to help!