Skip to content

Commit

Permalink
fix Get-GitHubRepositoryTeam
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusStorhaug committed Oct 27, 2023
1 parent 5cc7752 commit 9a68f8c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
filter Get-GitHubRepositoryTeams {
filter Get-GitHubRepositoryTeam {
<#
.SYNOPSIS
List repository teams
Expand All @@ -15,7 +15,7 @@
This endpoint is not compatible with fine-grained personal access tokens.
.EXAMPLE
Get-GitHubRepositoryTeams -Owner 'PSModule' -Repo 'GitHub'
Get-GitHubRepositoryTeam -Owner 'PSModule' -Repo 'GitHub'
Lists the teams that have access to the specified repository and that are also visible to the authenticated user.
Expand All @@ -24,6 +24,7 @@
#>
[CmdletBinding()]
[Alias('Get-GitHubRepositoryTeams')]
param (
# The account owner of the repository. The name is not case sensitive.
[Parameter()]
Expand Down

0 comments on commit 9a68f8c

Please sign in to comment.