@@ -46,14 +46,14 @@ function Get-GitHubLabel
46
46
If not supplied here, the DefaultNoStatus configuration property value will be used.
47
47
48
48
. EXAMPLE
49
- Get-GitHubLabel -OwnerName Powershell -RepositoryName PowerShellForGitHub
49
+ Get-GitHubLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub
50
50
51
- Gets the information for every label from the PowerShell \PowerShellForGitHub project.
51
+ Gets the information for every label from the Microsoft \PowerShellForGitHub project.
52
52
53
53
. EXAMPLE
54
- Get-GitHubLabel -OwnerName Powershell -RepositoryName PowerShellForGitHub -LabelName TestLabel
54
+ Get-GitHubLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -LabelName TestLabel
55
55
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
57
57
project.
58
58
#>
59
59
[CmdletBinding (
@@ -198,7 +198,7 @@ function New-GitHubLabel
198
198
If not supplied here, the DefaultNoStatus configuration property value will be used.
199
199
200
200
. EXAMPLE
201
- New-GitHubLabel -OwnerName PowerShell -RepositoryName PowerShellForGitHub -Name TestLabel -Color BBBBBB
201
+ New-GitHubLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Name TestLabel -Color BBBBBB
202
202
203
203
Creates a new, grey-colored label called "TestLabel" in the PowerShellForGitHub project.
204
204
#>
@@ -312,7 +312,7 @@ function Remove-GitHubLabel
312
312
If not supplied here, the DefaultNoStatus configuration property value will be used.
313
313
314
314
. EXAMPLE
315
- Remove-GitHubLabel -OwnerName PowerShell -RepositoryName PowerShellForGitHub -Name TestLabel
315
+ Remove-GitHubLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Name TestLabel
316
316
317
317
Removes the label called "TestLabel" from the PowerShellForGitHub project.
318
318
#>
@@ -417,7 +417,7 @@ function Update-GitHubLabel
417
417
If not supplied here, the DefaultNoStatus configuration property value will be used.
418
418
419
419
. 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
421
421
422
422
Updates the existing label called TestLabel in the PowerShellForGitHub project to be called
423
423
'NewTestLabel' and be colored yellow.
@@ -541,7 +541,7 @@ function Set-GitHubLabel
541
541
removed (and thus unassigned from existing Issues) and then the new one created.
542
542
543
543
. 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'})
545
545
546
546
Removes any labels not in this Label array, ensure the current assigned color and descriptions
547
547
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
654
654
If not supplied here, the DefaultNoStatus configuration property value will be used.
655
655
656
656
. EXAMPLE
657
- Add-GitHubIssueLabel -OwnerName PowerShell -RepositoryName PowerShellForGitHub -Issue 1 -Name $labels
657
+ Add-GitHubIssueLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Issue 1 -Name $labels
658
658
659
659
Adds labels to an issue in the PowerShellForGitHub project.
660
660
#>
@@ -755,7 +755,7 @@ function Set-GitHubIssueLabel
755
755
If not supplied here, the DefaultNoStatus configuration property value will be used.
756
756
757
757
. EXAMPLE
758
- Set-GitHubIssueLabel -OwnerName PowerShell -RepositoryName PowerShellForGitHub -Issue 1 -LabelName $labels
758
+ Set-GitHubIssueLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Issue 1 -LabelName $labels
759
759
760
760
Replaces labels on an issue in the PowerShellForGitHub project.
761
761
#>
@@ -857,7 +857,7 @@ function Remove-GitHubIssueLabel
857
857
If not supplied here, the DefaultNoStatus configuration property value will be used.
858
858
859
859
. EXAMPLE
860
- Remove-GitHubIssueLabel -OwnerName PowerShell -RepositoryName PowerShellForGitHub -Name TestLabel -Issue 1
860
+ Remove-GitHubIssueLabel -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Name TestLabel -Issue 1
861
861
862
862
Removes the label called "TestLabel" from issue 1 in the PowerShellForGitHub project.
863
863
#>
0 commit comments