You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: GitHubAnalytics.ps1
+2-2
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ function Group-GitHubIssue
35
35
#>
36
36
[CmdletBinding(
37
37
SupportsShouldProcess,
38
-
DefaultParametersetName='Weekly')]
38
+
DefaultParameterSetName='Weekly')]
39
39
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
40
40
param
41
41
(
@@ -128,7 +128,7 @@ function Group-GitHubPullRequest
128
128
#>
129
129
[CmdletBinding(
130
130
SupportsShouldProcess,
131
-
DefaultParametersetName='Weekly')]
131
+
DefaultParameterSetName='Weekly')]
132
132
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
Copy file name to clipboardExpand all lines: GitHubAssignees.ps1
+6-6
Original file line number
Diff line number
Diff line change
@@ -33,13 +33,13 @@ function Get-GitHubAssignee
33
33
If not supplied here, the DefaultNoStatus configuration property value will be used.
34
34
35
35
.EXAMPLE
36
-
Get-GitHubAsigneeList -OwnerName Microsoft -RepositoryName PowerShellForGitHub
36
+
Get-GitHubAssigneeList -OwnerName Microsoft -RepositoryName PowerShellForGitHub
37
37
38
38
Lists the available assignees for issues from the Microsoft\PowerShellForGitHub project.
39
39
#>
40
40
[CmdletBinding(
41
41
SupportsShouldProcess,
42
-
DefaultParametersetName='Elements')]
42
+
DefaultParameterSetName='Elements')]
43
43
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
44
44
param(
45
45
[Parameter(ParameterSetName='Elements')]
@@ -125,7 +125,7 @@ function Test-GitHubAssignee
125
125
#>
126
126
[CmdletBinding(
127
127
SupportsShouldProcess,
128
-
DefaultParametersetName='Elements')]
128
+
DefaultParameterSetName='Elements')]
129
129
[OutputType([bool])]
130
130
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
231
231
param(
232
232
[Parameter(ParameterSetName='Elements')]
@@ -328,7 +328,7 @@ function Remove-GithubAssignee
328
328
#>
329
329
[CmdletBinding(
330
330
SupportsShouldProcess,
331
-
DefaultParametersetName='Elements')]
331
+
DefaultParameterSetName='Elements')]
332
332
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
Copy file name to clipboardExpand all lines: GitHubBranches.ps1
+2-2
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ function Get-GitHubRepositoryBranch
26
26
them individually.
27
27
28
28
.PARAMETERName
29
-
Name of the specific branch to be retieved. If not supplied, all branches will be retrieved.
29
+
Name of the specific branch to be retrieved. If not supplied, all branches will be retrieved.
30
30
31
31
.PARAMETERAccessToken
32
32
If provided, this will be used as the AccessToken for authentication with the
@@ -53,7 +53,7 @@ function Get-GitHubRepositoryBranch
53
53
#>
54
54
[CmdletBinding(
55
55
SupportsShouldProcess,
56
-
DefaultParametersetName='Elements')]
56
+
DefaultParameterSetName='Elements')]
57
57
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
Copy file name to clipboardExpand all lines: GitHubComments.ps1
+4-4
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ function Get-GitHubComment
62
62
#>
63
63
[CmdletBinding(
64
64
SupportsShouldProcess,
65
-
DefaultParametersetName='RepositoryElements')]
65
+
DefaultParameterSetName='RepositoryElements')]
66
66
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
247
247
param(
248
248
[Parameter(ParameterSetName='Elements')]
@@ -353,7 +353,7 @@ function Set-GitHubComment
353
353
#>
354
354
[CmdletBinding(
355
355
SupportsShouldProcess,
356
-
DefaultParametersetName='Elements')]
356
+
DefaultParameterSetName='Elements')]
357
357
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
358
358
param(
359
359
[Parameter(ParameterSetName='Elements')]
@@ -453,7 +453,7 @@ function Remove-GitHubComment
453
453
#>
454
454
[CmdletBinding(
455
455
SupportsShouldProcess,
456
-
DefaultParametersetName='Elements')]
456
+
DefaultParameterSetName='Elements')]
457
457
[Alias('Delete-GitHubComment')]
458
458
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
Copy file name to clipboardExpand all lines: GitHubContents.ps1
+1-1
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ function Get-GitHubContent
62
62
#>
63
63
[CmdletBinding(
64
64
SupportsShouldProcess,
65
-
DefaultParametersetName='Elements')]
65
+
DefaultParameterSetName='Elements')]
66
66
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification ="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
@@ -788,7 +788,7 @@ function Resolve-RepositoryElements
788
788
have no value.
789
789
790
790
.OUTPUTS
791
-
[PSCutomObject] - The OwnerName and RepositoryName elements to be used
791
+
[PSCustomObject] - The OwnerName and RepositoryName elements to be used
792
792
#>
793
793
[CmdletBinding(SupportsShouldProcess)]
794
794
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
Copy file name to clipboardExpand all lines: GitHubEvents.ps1
+1-1
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ function Get-GitHubEvent
45
45
#>
46
46
[CmdletBinding(
47
47
SupportsShouldProcess,
48
-
DefaultParametersetName='RepositoryElements')]
48
+
DefaultParameterSetName='RepositoryElements')]
49
49
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
Copy file name to clipboardExpand all lines: GitHubIssues.ps1
+9-9
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ function Get-GitHubIssue
33
33
ownedAndMember: Retrieve issues across owned and member repositories
34
34
35
35
.PARAMETERIssue
36
-
The number of specic Issue to retrieve. If not supplied, will return back all
36
+
The number of specific Issue to retrieve. If not supplied, will return back all
37
37
Issues for this Repository that match the specified criteria.
38
38
39
39
.PARAMETERIgnorePullRequests
@@ -117,7 +117,7 @@ function Get-GitHubIssue
117
117
#>
118
118
[CmdletBinding(
119
119
SupportsShouldProcess,
120
-
DefaultParametersetName='Elements')]
120
+
DefaultParameterSetName='Elements')]
121
121
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
122
122
param(
123
123
[Parameter(ParameterSetName='Elements')]
@@ -376,7 +376,7 @@ function Get-GitHubIssueTimeline
376
376
#>
377
377
[CmdletBinding(
378
378
SupportsShouldProcess,
379
-
DefaultParametersetName='Elements')]
379
+
DefaultParameterSetName='Elements')]
380
380
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
381
381
param(
382
382
[Parameter(ParameterSetName='Elements')]
@@ -456,7 +456,7 @@ function New-GitHubIssue
456
456
Login(s) for Users to assign to the issue.
457
457
458
458
.PARAMETERMilestone
459
-
The number of the mileston to associate this issue with.
459
+
The number of the milestone to associate this issue with.
460
460
461
461
.PARAMETERLabel
462
462
Label(s) to associate with this issue.
@@ -484,7 +484,7 @@ function New-GitHubIssue
484
484
#>
485
485
[CmdletBinding(
486
486
SupportsShouldProcess,
487
-
DefaultParametersetName='Elements')]
487
+
DefaultParameterSetName='Elements')]
488
488
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
489
489
param(
490
490
[Parameter(ParameterSetName='Elements')]
@@ -591,7 +591,7 @@ function Update-GitHubIssue
591
591
Provide an empty array to clear all existing assignees.
592
592
593
593
.PARAMETERMilestone
594
-
The number of the mileston to associate this issue with.
594
+
The number of the milestone to associate this issue with.
595
595
Set to 0/$null to remove current.
596
596
597
597
.PARAMETERLabel
@@ -624,7 +624,7 @@ function Update-GitHubIssue
624
624
#>
625
625
[CmdletBinding(
626
626
SupportsShouldProcess,
627
-
DefaultParametersetName='Elements')]
627
+
DefaultParameterSetName='Elements')]
628
628
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
629
629
param(
630
630
[Parameter(ParameterSetName='Elements')]
@@ -749,7 +749,7 @@ function Lock-GitHubIssue
749
749
#>
750
750
[CmdletBinding(
751
751
SupportsShouldProcess,
752
-
DefaultParametersetName='Elements')]
752
+
DefaultParameterSetName='Elements')]
753
753
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
754
754
param(
755
755
[Parameter(ParameterSetName='Elements')]
@@ -859,7 +859,7 @@ function Unlock-GitHubIssue
859
859
#>
860
860
[CmdletBinding(
861
861
SupportsShouldProcess,
862
-
DefaultParametersetName='Elements')]
862
+
DefaultParameterSetName='Elements')]
863
863
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess","", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
0 commit comments