@@ -46,14 +46,14 @@ function Get-GitHubLabel
4646 If not supplied here, the DefaultNoStatus configuration property value will be used.
4747
4848 . EXAMPLE
49- Get-GitHubLabel -OwnerName Powershell -RepositoryName PowerShellForGitHub
49+ Get-GitHubLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub
5050
51- Gets the information for every label from the PowerShell \PowerShellForGitHub project.
51+ Gets the information for every label from the Microsoft \PowerShellForGitHub project.
5252
5353 . EXAMPLE
54- Get-GitHubLabel -OwnerName Powershell -RepositoryName PowerShellForGitHub -LabelName TestLabel
54+ Get-GitHubLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -LabelName TestLabel
5555
56- Gets the information for the label named "TestLabel" from the PowerShell \PowerShellForGitHub
56+ Gets the information for the label named "TestLabel" from the Microsoft \PowerShellForGitHub
5757 project.
5858#>
5959 [CmdletBinding (
@@ -198,7 +198,7 @@ function New-GitHubLabel
198198 If not supplied here, the DefaultNoStatus configuration property value will be used.
199199
200200 . EXAMPLE
201- New-GitHubLabel -OwnerName PowerShell -RepositoryName PowerShellForGitHub -Name TestLabel -Color BBBBBB
201+ New-GitHubLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Name TestLabel -Color BBBBBB
202202
203203 Creates a new, grey-colored label called "TestLabel" in the PowerShellForGitHub project.
204204#>
@@ -312,7 +312,7 @@ function Remove-GitHubLabel
312312 If not supplied here, the DefaultNoStatus configuration property value will be used.
313313
314314 . EXAMPLE
315- Remove-GitHubLabel -OwnerName PowerShell -RepositoryName PowerShellForGitHub -Name TestLabel
315+ Remove-GitHubLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Name TestLabel
316316
317317 Removes the label called "TestLabel" from the PowerShellForGitHub project.
318318#>
@@ -417,7 +417,7 @@ function Update-GitHubLabel
417417 If not supplied here, the DefaultNoStatus configuration property value will be used.
418418
419419 . EXAMPLE
420- Update-GitHubLabel -OwnerName Powershell -RepositoryName PowerShellForGitHub -Name TestLabel -NewName NewTestLabel -LabelColor BBBB00
420+ Update-GitHubLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Name TestLabel -NewName NewTestLabel -LabelColor BBBB00
421421
422422 Updates the existing label called TestLabel in the PowerShellForGitHub project to be called
423423 'NewTestLabel' and be colored yellow.
@@ -541,7 +541,7 @@ function Set-GitHubLabel
541541 removed (and thus unassigned from existing Issues) and then the new one created.
542542
543543 . EXAMPLE
544- Set-GitHubLabel -OwnerName Powershell -RepositoryName PowerShellForGitHub -Label @(@{'name' = 'TestLabel'; 'color' = 'EEEEEE'}, @{'name' = 'critical'; 'color' = 'FF000000'; 'description' = 'Needs immediate attention'})
544+ Set-GitHubLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Label @(@{'name' = 'TestLabel'; 'color' = 'EEEEEE'}, @{'name' = 'critical'; 'color' = 'FF000000'; 'description' = 'Needs immediate attention'})
545545
546546 Removes any labels not in this Label array, ensure the current assigned color and descriptions
547547 match what's in the array for the labels that do already exist, and then creates new labels
@@ -654,7 +654,7 @@ function Add-GitHubIssueLabel
654654 If not supplied here, the DefaultNoStatus configuration property value will be used.
655655
656656 . EXAMPLE
657- Add-GitHubIssueLabel -OwnerName PowerShell -RepositoryName PowerShellForGitHub -Issue 1 -Name $labels
657+ Add-GitHubIssueLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Issue 1 -Name $labels
658658
659659 Adds labels to an issue in the PowerShellForGitHub project.
660660#>
@@ -755,7 +755,7 @@ function Set-GitHubIssueLabel
755755 If not supplied here, the DefaultNoStatus configuration property value will be used.
756756
757757 . EXAMPLE
758- Set-GitHubIssueLabel -OwnerName PowerShell -RepositoryName PowerShellForGitHub -Issue 1 -LabelName $labels
758+ Set-GitHubIssueLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Issue 1 -LabelName $labels
759759
760760 Replaces labels on an issue in the PowerShellForGitHub project.
761761#>
@@ -857,7 +857,7 @@ function Remove-GitHubIssueLabel
857857 If not supplied here, the DefaultNoStatus configuration property value will be used.
858858
859859 . EXAMPLE
860- Remove-GitHubIssueLabel -OwnerName PowerShell -RepositoryName PowerShellForGitHub -Name TestLabel -Issue 1
860+ Remove-GitHubIssueLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Name TestLabel -Issue 1
861861
862862 Removes the label called "TestLabel" from issue 1 in the PowerShellForGitHub project.
863863#>
0 commit comments