forked from microsoft/PowerShellForGitHub
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGitHubPullRequests.ps1
1589 lines (1264 loc) · 52.2 KB
/
GitHubPullRequests.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
@{
GitHubPullRequestTypeName = 'GitHub.PullRequest'
GitHubPullRequestUpdateBranchResponseTypeName = 'GitHub.PullRequestUpdateBranchResponse'
GitHubPullRequestMergeResponseTypeName = 'GitHub.PullRequestMergeResponse'
GitHubCommitTypeName = 'GitHub.Commit'
GitHubFileTypeName = 'GitHub.File'
}.GetEnumerator() | ForEach-Object {
Set-Variable -Scope Script -Option ReadOnly -Name $_.Key -Value $_.Value
}
filter Get-GitHubPullRequest
{
<#
.SYNOPSIS
Retrieve the pull requests in the specified repository.
.DESCRIPTION
Retrieve the pull requests in the specified repository.
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
.PARAMETER OwnerName
Owner of the repository.
If not supplied here, the DefaultOwnerName configuration property value will be used.
.PARAMETER RepositoryName
Name of the repository.
If not supplied here, the DefaultRepositoryName configuration property value will be used.
.PARAMETER Uri
Uri for the repository.
The OwnerName and RepositoryName will be extracted from here instead of needing to provide
them individually.
.PARAMETER PullRequest
The specific pull request id to return back. If not supplied, will return back all
pull requests for the specified Repository.
.PARAMETER State
The state of the pull requests that should be returned back.
.PARAMETER Head
Filter pulls by head user and branch name in the format of 'user:ref-name'
.PARAMETER Base
Base branch name to filter the pulls by.
.PARAMETER Sort
What to sort the results by.
* created
* updated
* popularity (comment count)
* long-running (age, filtering by pulls updated in the last month)
.PARAMETER Direction
The direction to be used for Sort.
.PARAMETER AccessToken
If provided, this will be used as the AccessToken for authentication with the
REST Api. Otherwise, will attempt to use the configured value or will run unauthenticated.
.PARAMETER NoStatus
If this switch is specified, long-running commands will run on the main thread
with no commandline status update. When not specified, those commands run in
the background, enabling the command prompt to provide status information.
If not supplied here, the DefaultNoStatus configuration property value will be used.
.INPUTS
GitHub.Branch
GitHub.Content
GitHub.Event
GitHub.Issue
GitHub.IssueComment
GitHub.Label
GitHub.Milestone
GitHub.PullRequest
GitHub.Project
GitHub.ProjectCard
GitHub.ProjectColumn
GitHub.Reaction
GitHub.Release
GitHub.ReleaseAsset
GitHub.Repository
.OUTPUTS
GitHub.PullRequest
.EXAMPLE
$pullRequests = Get-GitHubPullRequest -Uri 'https://github.com/PowerShell/PowerShellForGitHub'
.EXAMPLE
$pullRequests = Get-GitHubPullRequest -OwnerName microsoft -RepositoryName PowerShellForGitHub -State Closed
#>
[CmdletBinding(DefaultParameterSetName='Elements')]
param(
[Parameter(ParameterSetName='Elements')]
[string] $OwnerName,
[Parameter(ParameterSetName='Elements')]
[string] $RepositoryName,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='Uri')]
[Alias('RepositoryUrl')]
[string] $Uri,
[Parameter(
ValueFromPipeline,
ValueFromPipelineByPropertyName)]
[Alias('PullRequestNumber')]
[int64] $PullRequest,
[ValidateSet('Open', 'Closed', 'All')]
[string] $State = 'Open',
[string] $Head,
[string] $Base,
[ValidateSet('Created', 'Updated', 'Popularity', 'LongRunning')]
[string] $Sort = 'Created',
[ValidateSet('Ascending', 'Descending')]
[string] $Direction = 'Descending',
[string] $AccessToken,
[switch] $NoStatus
)
Write-InvocationLog
$elements = Resolve-RepositoryElements
$OwnerName = $elements.ownerName
$RepositoryName = $elements.repositoryName
$telemetryProperties = @{
'OwnerName' = (Get-PiiSafeString -PlainText $OwnerName)
'RepositoryName' = (Get-PiiSafeString -PlainText $RepositoryName)
'ProvidedPullRequest' = $PSBoundParameters.ContainsKey('PullRequest')
}
$uriFragment = "/repos/$OwnerName/$RepositoryName/pulls"
$description = "Getting pull requests for $RepositoryName"
if ($PSBoundParameters.ContainsKey('PullRequest'))
{
$uriFragment = $uriFragment + "/$PullRequest"
$description = "Getting pull request $PullRequest for $RepositoryName"
}
$sortConverter = @{
'Created' = 'created'
'Updated' = 'updated'
'Popularity' = 'popularity'
'LongRunning' = 'long-running'
}
$directionConverter = @{
'Ascending' = 'asc'
'Descending' = 'desc'
}
$getParams = @(
"state=$($State.ToLower())",
"sort=$($sortConverter[$Sort])",
"direction=$($directionConverter[$Direction])"
)
if ($PSBoundParameters.ContainsKey('Head'))
{
$getParams += "head=$Head"
}
if ($PSBoundParameters.ContainsKey('Base'))
{
$getParams += "base=$Base"
}
$params = @{
'UriFragment' = $uriFragment + '?' + ($getParams -join '&')
'Description' = $description
'AcceptHeader' = $script:symmetraAcceptHeader
'AccessToken' = $AccessToken
'TelemetryEventName' = $MyInvocation.MyCommand.Name
'TelemetryProperties' = $telemetryProperties
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -Name NoStatus -ConfigValueName DefaultNoStatus)
}
return (Invoke-GHRestMethodMultipleResult @params | Add-GitHubPullRequestAdditionalProperties)
}
filter Get-GitHubPullRequestCommit
{
<#
.SYNOPSIS
Retrieve the list of commits for the specified pull request.
.DESCRIPTION
Retrieve the list of commits for the specified pull request.
A maximum of 250 commits for a pull request will be returned.
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
.PARAMETER OwnerName
Owner of the repository.
If not supplied here, the DefaultOwnerName configuration property value will be used.
.PARAMETER RepositoryName
Name of the repository.
If not supplied here, the DefaultRepositoryName configuration property value will be used.
.PARAMETER Uri
Uri for the repository.
The OwnerName and RepositoryName will be extracted from here instead of needing to provide
them individually.
.PARAMETER PullRequest
The ID of the pull request to return the commits for.
.PARAMETER AccessToken
If provided, this will be used as the AccessToken for authentication with the
REST Api. Otherwise, will attempt to use the configured value or will run unauthenticated.
.PARAMETER NoStatus
If this switch is specified, long-running commands will run on the main thread
with no commandline status update. When not specified, those commands run in
the background, enabling the command prompt to provide status information.
If not supplied here, the DefaultNoStatus configuration property value will be used.
.INPUTS
GitHub.Branch
GitHub.Content
GitHub.Event
GitHub.Issue
GitHub.IssueComment
GitHub.Label
GitHub.Milestone
GitHub.PullRequest
GitHub.Project
GitHub.ProjectCard
GitHub.ProjectColumn
GitHub.Release
GitHub.Repository
.OUTPUTS
GitHub.Commit
.EXAMPLE
Get-GitHubPullRequestCommit -Uri 'https://github.com/PowerShell/PowerShellForGitHub' -PullRequest 39
#>
[CmdletBinding(DefaultParameterSetName='Elements')]
[OutputType({$script:GitHubCommitTypeName})]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSReviewUnusedParameter", "", Justification="One or more parameters (like NoStatus) are only referenced by helper methods which get access to it from the stack via Get-Variable -Scope 1.")]
param(
[Parameter(ParameterSetName='Elements')]
[string] $OwnerName,
[Parameter(ParameterSetName='Elements')]
[string] $RepositoryName,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='Uri')]
[Alias('RepositoryUrl')]
[string] $Uri,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName)]
[Alias('PullRequestNumber')]
[int64] $PullRequest,
[string] $AccessToken,
[switch] $NoStatus
)
Write-InvocationLog
$elements = Resolve-RepositoryElements
$OwnerName = $elements.ownerName
$RepositoryName = $elements.repositoryName
$telemetryProperties = @{
'OwnerName' = (Get-PiiSafeString -PlainText $OwnerName)
'RepositoryName' = (Get-PiiSafeString -PlainText $RepositoryName)
}
$params = @{
'UriFragment' = "/repos/$OwnerName/$RepositoryName/pulls/$PullRequest/commits"
'Description' = "Getting commits for pull request $PullRequest"
'AccessToken' = $AccessToken
'TelemetryEventName' = $MyInvocation.MyCommand.Name
'TelemetryProperties' = $telemetryProperties
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -Name NoStatus -ConfigValueName DefaultNoStatus)
}
return (Invoke-GHRestMethodMultipleResult @params | Add-GitHubCommitAdditionalProperties)
}
filter Get-GitHubPullRequestFile
{
<#
.SYNOPSIS
Retrieve the list of files in the specified pull request.
.DESCRIPTION
Retrieve the list of files in the specified pull request.
A maximum of 3000 files will be returned.
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
.PARAMETER OwnerName
Owner of the repository.
If not supplied here, the DefaultOwnerName configuration property value will be used.
.PARAMETER RepositoryName
Name of the repository.
If not supplied here, the DefaultRepositoryName configuration property value will be used.
.PARAMETER Uri
Uri for the repository.
The OwnerName and RepositoryName will be extracted from here instead of needing to provide
them individually.
.PARAMETER PullRequest
The ID of the pull request to return the files for.
.PARAMETER AccessToken
If provided, this will be used as the AccessToken for authentication with the
REST Api. Otherwise, will attempt to use the configured value or will run unauthenticated.
.PARAMETER NoStatus
If this switch is specified, long-running commands will run on the main thread
with no commandline status update. When not specified, those commands run in
the background, enabling the command prompt to provide status information.
If not supplied here, the DefaultNoStatus configuration property value will be used.
.INPUTS
GitHub.Branch
GitHub.Content
GitHub.Event
GitHub.Issue
GitHub.IssueComment
GitHub.Label
GitHub.Milestone
GitHub.PullRequest
GitHub.Project
GitHub.ProjectCard
GitHub.ProjectColumn
GitHub.Release
GitHub.Repository
.OUTPUTS
GitHub.File
.EXAMPLE
Get-GitHubPullRequestFile -Uri 'https://github.com/PowerShell/PowerShellForGitHub' -PullRequest 39
#>
[CmdletBinding(DefaultParameterSetName='Elements')]
[OutputType({$script:GitHubFileTypeName})]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSReviewUnusedParameter", "", Justification="One or more parameters (like NoStatus) are only referenced by helper methods which get access to it from the stack via Get-Variable -Scope 1.")]
param(
[Parameter(ParameterSetName='Elements')]
[string] $OwnerName,
[Parameter(ParameterSetName='Elements')]
[string] $RepositoryName,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='Uri')]
[Alias('RepositoryUrl')]
[string] $Uri,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName)]
[Alias('PullRequestNumber')]
[int64] $PullRequest,
[string] $AccessToken,
[switch] $NoStatus
)
Write-InvocationLog
$elements = Resolve-RepositoryElements
$OwnerName = $elements.ownerName
$RepositoryName = $elements.repositoryName
$telemetryProperties = @{
'OwnerName' = (Get-PiiSafeString -PlainText $OwnerName)
'RepositoryName' = (Get-PiiSafeString -PlainText $RepositoryName)
}
$params = @{
'UriFragment' = "/repos/$OwnerName/$RepositoryName/pulls/$PullRequest/files"
'Description' = "Getting commits for pull request $PullRequest"
'AccessToken' = $AccessToken
'TelemetryEventName' = $MyInvocation.MyCommand.Name
'TelemetryProperties' = $telemetryProperties
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -Name NoStatus -ConfigValueName DefaultNoStatus)
}
return (Invoke-GHRestMethodMultipleResult @params | Add-GitHubFileAdditionalProperties -PullRequest $PullRequest)
}
filter New-GitHubPullRequest
{
<#
.SYNOPSIS
Create a new pull request in the specified repository.
.DESCRIPTION
Opens a new pull request from the given branch into the given branch
in the specified repository.
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
.PARAMETER OwnerName
Owner of the repository.
If not supplied here, the DefaultOwnerName configuration property value will be used.
.PARAMETER RepositoryName
Name of the repository.
If not supplied here, the DefaultRepositoryName configuration property value will be used.
.PARAMETER Uri
Uri for the repository.
The OwnerName and RepositoryName will be extracted from here instead of needing to provide
them individually.
.PARAMETER Title
The title of the pull request to be created.
.PARAMETER Body
The text description of the pull request.
.PARAMETER Issue
The GitHub issue number to open the pull request to address.
.PARAMETER Head
The name of the head branch (the branch containing the changes to be merged).
May also include the name of the owner fork, in the form "${fork}:${branch}".
.PARAMETER Base
The name of the target branch of the pull request
(where the changes in the head will be merged to).
.PARAMETER HeadOwner
The name of fork that the change is coming from.
Used as the prefix of $Head parameter in the form "${HeadOwner}:${Head}".
If unspecified, the unprefixed branch name is used,
creating a pull request from the $OwnerName fork of the repository.
.PARAMETER MaintainerCanModify
If set, allows repository maintainers to commit changes to the
head branch of this pull request.
.PARAMETER Draft
If set, opens the pull request as a draft.
.PARAMETER AccessToken
If provided, this will be used as the AccessToken for authentication with the
REST Api. Otherwise, will attempt to use the configured value or will run unauthenticated.
.PARAMETER NoStatus
If this switch is specified, long-running commands will run on the main thread
with no commandline status update. When not specified, those commands run in
the background, enabling the command prompt to provide status information.
If not supplied here, the DefaultNoStatus configuration property value will be used.
.INPUTS
GitHub.Branch
GitHub.Content
GitHub.Event
GitHub.Issue
GitHub.IssueComment
GitHub.Label
GitHub.Milestone
GitHub.PullRequest
GitHub.Project
GitHub.ProjectCard
GitHub.ProjectColumn
GitHub.Reaction
GitHub.Release
GitHub.ReleaseAsset
GitHub.Repository
.OUTPUTS
GitHub.PullRequest
.EXAMPLE
$prParams = @{
OwnerName = 'Microsoft'
Repository = 'PowerShellForGitHub'
Title = 'Add simple file to root'
Head = 'octocat:simple-file'
Base = 'master'
Body = "Adds a simple text file to the repository root.`n`nThis is an automated PR!"
MaintainerCanModify = $true
}
$pr = New-GitHubPullRequest @prParams
.EXAMPLE
New-GitHubPullRequest -Uri 'https://github.com/PowerShell/PSScriptAnalyzer' -Title 'Add test' -Head simple-test -HeadOwner octocat -Base development -Draft -MaintainerCanModify
.EXAMPLE
New-GitHubPullRequest -Uri 'https://github.com/PowerShell/PSScriptAnalyzer' -Issue 642 -Head simple-test -HeadOwner octocat -Base development -Draft
#>
[CmdletBinding(
SupportsShouldProcess,
DefaultParameterSetName='Elements_Title')]
[OutputType({$script:GitHubPullRequestTypeName})]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")]
param(
[Parameter(ParameterSetName='Elements_Title')]
[Parameter(ParameterSetName='Elements_Issue')]
[string] $OwnerName,
[Parameter(ParameterSetName='Elements_Title')]
[Parameter(ParameterSetName='Elements_Issue')]
[string] $RepositoryName,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='Uri_Title')]
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='Uri_Issue')]
[Alias('RepositoryUrl')]
[string] $Uri,
[Parameter(
Mandatory,
ParameterSetName='Elements_Title')]
[Parameter(
Mandatory,
ParameterSetName='Uri_Title')]
[ValidateNotNullOrEmpty()]
[string] $Title,
[Parameter(ParameterSetName='Elements_Title')]
[Parameter(ParameterSetName='Uri_Title')]
[string] $Body,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='Elements_Issue')]
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='Uri_Issue')]
[Alias('IssueNumber')]
[int64] $Issue,
[Parameter(Mandatory)]
[string] $Head,
[Parameter(Mandatory)]
[string] $Base,
[string] $HeadOwner,
[switch] $MaintainerCanModify,
[switch] $Draft,
[string] $AccessToken,
[switch] $NoStatus
)
if (-not $PSCmdlet.ShouldProcess('Pull Request', 'New'))
{
return
}
Write-InvocationLog
if (-not [string]::IsNullOrWhiteSpace($HeadOwner))
{
if ($Head.Contains(':'))
{
$message = "`$Head ('$Head') was specified with an owner prefix, but `$HeadOwner ('$HeadOwner') was also specified." +
" Either specify `$Head in '<owner>:<branch>' format, or set `$Head = '<branch>' and `$HeadOwner = '<owner>'."
Write-Log -Message $message -Level Error
throw $message
}
# $Head does not contain ':' - add the owner fork prefix
$Head = "${HeadOwner}:${Head}"
}
$elements = Resolve-RepositoryElements
$OwnerName = $elements.ownerName
$RepositoryName = $elements.repositoryName
$telemetryProperties = @{
'OwnerName' = (Get-PiiSafeString -PlainText $OwnerName)
'RepositoryName' = (Get-PiiSafeString -PlainText $RepositoryName)
}
$uriFragment = "/repos/$OwnerName/$RepositoryName/pulls"
$hashBody = @{
'head' = $Head
'base' = $Base
}
if ($PSBoundParameters.ContainsKey('Title'))
{
$description = "Creating pull request $Title in $RepositoryName"
$hashBody['title'] = $Title
# Body may be whitespace, although this might not be useful
if ($Body)
{
$hashBody['body'] = $Body
}
}
else
{
$description = "Creating pull request for issue $Issue in $RepositoryName"
$hashBody['issue'] = $Issue
}
if ($MaintainerCanModify)
{
$hashBody['maintainer_can_modify'] = $true
}
if ($Draft)
{
$hashBody['draft'] = $true
$acceptHeader = 'application/vnd.github.shadow-cat-preview+json'
}
$restParams = @{
'UriFragment' = $uriFragment
'Method' = 'Post'
'Description' = $description
'Body' = ConvertTo-Json -InputObject $hashBody -Compress
'AccessToken' = $AccessToken
'TelemetryEventName' = $MyInvocation.MyCommand.Name
'TelemetryProperties' = $telemetryProperties
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -Name NoStatus -ConfigValueName DefaultNoStatus)
}
if ($acceptHeader)
{
$restParams['AcceptHeader'] = $acceptHeader
}
return (Invoke-GHRestMethod @restParams | Add-GitHubPullRequestAdditionalProperties)
}
filter Update-GitHubPullRequestBranch
{
<#
.SYNOPSIS
Updates the pull request branch with the latest upstream changes by
merging HEAD from the base branch into the pull request branch.
.DESCRIPTION
Updates the pull request branch with the latest upstream changes by
merging HEAD from the base branch into the pull request branch.
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
.PARAMETER OwnerName
Owner of the repository.
If not supplied here, the DefaultOwnerName configuration property value will be used.
.PARAMETER RepositoryName
Name of the repository.
If not supplied here, the DefaultRepositoryName configuration property value will be used.
.PARAMETER Uri
Uri for the repository.
The OwnerName and RepositoryName will be extracted from here instead of needing to provide
them individually.
.PARAMETER PullRequest
The ID of the pull request to update.
.PARAMETER Sha
The expected SHA of the pull request's HEAD ref. This is the most recent commit on the
pull request's branch. If the expected SHA does not match the pull request's HEAD, you
will receive a 422 exception. You can use Get-GitHubPullRequestCommit to find the most
recent commit SHA. Defaults to the pull request's current HEAD ref.
.PARAMETER AccessToken
If provided, this will be used as the AccessToken for authentication with the
REST Api. Otherwise, will attempt to use the configured value or will run unauthenticated.
.PARAMETER NoStatus
If this switch is specified, long-running commands will run on the main thread
with no commandline status update. When not specified, those commands run in
the background, enabling the command prompt to provide status information.
If not supplied here, the DefaultNoStatus configuration property value will be used.
.INPUTS
GitHub.Branch
GitHub.Content
GitHub.Event
GitHub.Issue
GitHub.IssueComment
GitHub.Label
GitHub.Milestone
GitHub.PullRequest
GitHub.Project
GitHub.ProjectCard
GitHub.ProjectColumn
GitHub.Release
GitHub.Repository
.OUTPUTS
GitHub.PullRequestUpdateBranchResponse
.EXAMPLE
Update-GitHubPullRequestBranch -Uri 'https://github.com/PowerShell/PowerShellForGitHub' -PullRequest 39
#>
[CmdletBinding(
SupportsShouldProcess,
DefaultParameterSetName='Elements')]
[OutputType({$script:GitHubPullRequestUpdateBranchResponseTypeName})]
[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("PSReviewUnusedParameter", "", Justification="One or more parameters (like NoStatus) are only referenced by helper methods which get access to it from the stack via Get-Variable -Scope 1.")]
param(
[Parameter(ParameterSetName='Elements')]
[string] $OwnerName,
[Parameter(ParameterSetName='Elements')]
[string] $RepositoryName,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='Uri')]
[Alias('RepositoryUrl')]
[string] $Uri,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName)]
[Alias('PullRequestNumber')]
[int64] $PullRequest,
[string] $Sha,
[string] $AccessToken,
[switch] $NoStatus
)
$elements = Resolve-RepositoryElements
$OwnerName = $elements.ownerName
$RepositoryName = $elements.repositoryName
if (-not $PSCmdlet.ShouldProcess($PullRequest, 'Update GitHub Pull Request Branch'))
{
return
}
Write-InvocationLog
$telemetryProperties = @{
'OwnerName' = (Get-PiiSafeString -PlainText $OwnerName)
'RepositoryName' = (Get-PiiSafeString -PlainText $RepositoryName)
'SpecifiedSha' = (-not [String]::IsNullOrWhiteSpace($Sha))
}
$hashBody = @{}
if (-not [String]::IsNullOrWhiteSpace($Sha)) { $hashBody['expected_head_sha'] = $Sha }
$restParams = @{
'UriFragment' = "/repos/$OwnerName/$RepositoryName/pulls/$PullRequest/update-branch"
'Method' = 'Put'
'Description' = "Updating the branch for pull request $PullRequest"
'AcceptHeader' = 'application/vnd.github.lydian-preview+json'
'Body' = ConvertTo-Json -InputObject $hashBody
'AccessToken' = $AccessToken
'TelemetryEventName' = $MyInvocation.MyCommand.Name
'TelemetryProperties' = $telemetryProperties
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -Name NoStatus -ConfigValueName DefaultNoStatus)
}
return (Invoke-GHRestMethod @restParams |
Add-GitHubPullRequestUpdateBranchResponseAdditionalProperties)
}
filter Set-GitHubPullRequest
{
<#
.SYNOPSIS
Updates the pull request branch with the latest upstream changes by
merging HEAD from the base branch into the pull request branch.
.DESCRIPTION
Updates the pull request branch with the latest upstream changes by
merging HEAD from the base branch into the pull request branch.
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
.PARAMETER OwnerName
Owner of the repository.
If not supplied here, the DefaultOwnerName configuration property value will be used.
.PARAMETER RepositoryName
Name of the repository.
If not supplied here, the DefaultRepositoryName configuration property value will be used.
.PARAMETER Uri
Uri for the repository.
The OwnerName and RepositoryName will be extracted from here instead of needing to provide
them individually.
.PARAMETER PullRequest
The ID of the pull request to update.
.PARAMETER Title
The new title of the pull request.
.PARAMETER Body
The new text description for the pull request.
.PARAMETER State
The new state for the pull request.
.PARAMETER Base
The name of the branch you want your changes pulled into.
This should be an existing branch on the current repository.
You cannot update the base branch on a pull request to point to another repository.
.PARAMETER MaintainerCanModify
If provided, indicates whether repository maintainers can commit changes to the
head branch of this pull request. To disable this, specify the switch with the value $false
(e.g. -MaintainerCanModify:$false)
.PARAMETER AccessToken
If provided, this will be used as the AccessToken for authentication with the
REST Api. Otherwise, will attempt to use the configured value or will run unauthenticated.
.PARAMETER NoStatus
If this switch is specified, long-running commands will run on the main thread
with no commandline status update. When not specified, those commands run in
the background, enabling the command prompt to provide status information.
If not supplied here, the DefaultNoStatus configuration property value will be used.
.INPUTS
GitHub.Branch
GitHub.Content
GitHub.Event
GitHub.Issue
GitHub.IssueComment
GitHub.Label
GitHub.Milestone
GitHub.PullRequest
GitHub.Project
GitHub.ProjectCard
GitHub.ProjectColumn
GitHub.Release
GitHub.Repository
.OUTPUTS
GitHub.PullRequest
.EXAMPLE
Set-GitHubPullRequestBranch -Uri 'https://github.com/PowerShell/PowerShellForGitHub' -PullRequest 39
.NOTES
To open or update a pull request in a public repository, you must have write access to the
head or the source branch. For organization-owned repositories, you must be a member of
the organization that owns the repository to open or update a pull request.
#>
[CmdletBinding(
SupportsShouldProcess,
DefaultParameterSetName='Elements')]
[OutputType({$script:GitHubPullRequestTypeName})]
[Alias('Update-GitHubPullRequest')]
[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("PSReviewUnusedParameter", "", Justification="One or more parameters (like NoStatus) are only referenced by helper methods which get access to it from the stack via Get-Variable -Scope 1.")]
param(
[Parameter(ParameterSetName='Elements')]
[string] $OwnerName,
[Parameter(ParameterSetName='Elements')]
[string] $RepositoryName,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='Uri')]
[Alias('RepositoryUrl')]
[string] $Uri,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName)]
[Alias('PullRequestNumber')]
[int64] $PullRequest,
[string] $Title,
[string] $Body,
[ValidateSet('Open', 'Closed')]
[string] $State,
[string] $Base,
[switch] $MaintainerCanModify,
[string] $AccessToken,
[switch] $NoStatus
)
$elements = Resolve-RepositoryElements
$OwnerName = $elements.ownerName
$RepositoryName = $elements.repositoryName
if (-not $PSCmdlet.ShouldProcess($PullRequest, 'Update GitHub Pull Request'))
{
return
}
Write-InvocationLog
$telemetryProperties = @{
'OwnerName' = (Get-PiiSafeString -PlainText $OwnerName)
'RepositoryName' = (Get-PiiSafeString -PlainText $RepositoryName)
'ProvidedTitle' = (-not [String]::IsNullOrWhiteSpace($Title))
'ProvidedBody' = (-not [String]::IsNullOrWhiteSpace($Body))
'ProvidedBase' = (-not [String]::IsNullOrWhiteSpace($Base))
'ProvidedMaintainerCanModify' = ($MaintainerCanModify.IsPresent)
}
$hashBody = @{}
if (-not [String]::IsNullOrWhiteSpace($Title)) { $hashBody['title'] = $Title }
if (-not [String]::IsNullOrWhiteSpace($Body)) { $hashBody['body'] = $Body }
if (-not [String]::IsNullOrWhiteSpace($State)) { $hashBody['state'] = $State.ToLower() }
if (-not [String]::IsNullOrWhiteSpace($Base)) { $hashBody['base'] = $Base }
if ($MaintainerCanModify.IsPresent) { $hashBody['maintainer_can_modify'] = $MaintainerCanModify.ToBool() }
$restParams = @{
'UriFragment' = "/repos/$OwnerName/$RepositoryName/pulls/$PullRequest"
'Method' = 'Patch'
'Description' = "Updating the pull request $PullRequest"
'AcceptHeader' = 'application/vnd.github.sailor-v-preview+json'
'Body' = ConvertTo-Json -InputObject $hashBody
'AccessToken' = $AccessToken
'TelemetryEventName' = $MyInvocation.MyCommand.Name
'TelemetryProperties' = $telemetryProperties
'NoStatus' = (Resolve-ParameterWithDefaultConfigurationValue -Name NoStatus -ConfigValueName DefaultNoStatus)
}
return (Invoke-GHRestMethod @restParams | Add-GitHubPullRequestAdditionalProperties)
}
filter Test-GitHubPullRequestMerged
{
<#
.SYNOPSIS
Checks to see if a pull request on GitHub has been merged.
.DESCRIPTION
Checks to see if a pull request on GitHub has been merged.
Will return $false if the request has not merged, as well as if the pull request is invalid
or inaccessible.
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
.PARAMETER OwnerName
Owner of the repository.
If not supplied here, the DefaultOwnerName configuration property value will be used.
.PARAMETER RepositoryName
Name of the repository.
If not supplied here, the DefaultRepositoryName configuration property value will be used.