File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,18 +10,18 @@ $owner = $env:GITHUB_REPOSITORY_OWNER
1010LogGroup " Connect to organization [$owner ]" {
1111 Connect-GitHubApp - Organization $owner - Default
1212 Write-Output " Owner: $owner "
13- $rawRepos = Get-GitHubRepository - Organization $owner
13+ $rawRepos = Get-GitHubRepository - Organization $owner - AdditionalProperty Description
1414 Write-Output " Found $ ( $rawRepos.Count ) repositories"
1515 $repos = $rawRepos | ForEach-Object {
1616 $rawRepo = $_
1717 $properties = Get-GitHubRepositoryCustomProperty - Owner $owner - Repo $rawRepo.name
1818 $properties | Where-Object { $_.property_name -eq ' Type' } | ForEach-Object {
1919 $type = $_.value
2020 [pscustomobject ]@ {
21- Name = $rawRepo.name
21+ Name = $rawRepo.Name
2222 Owner = $owner
2323 Type = $type
24- Description = $rawRepo.description
24+ Description = $rawRepo.Description
2525 }
2626 }
2727 } | Sort-Object Type, Name
You can’t perform that action at this time.
0 commit comments