We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62042a3 commit 9451038Copy full SHA for 9451038
build/Get-PRHistory.ps1
@@ -72,6 +72,7 @@ if ($ApiKey) {
72
}
73
Invoke-RestMethod @RequestParams -Uri 'https://api.github.com/' | Out-String | Write-Verbose
74
75
+$RequestParams = if ($AuthSession) { @{ WebSession = $AuthSession } } else { @{ } }
76
$gitParams = @(
77
'--no-pager'
78
'log'
@@ -110,4 +111,4 @@ if ($Append) {
110
111
else { $currentContent = @() }
112
$mdTable + $currentContent | Set-Content -Path $Path
113
-else { $mdTable | Set-Content -Path $Path }
114
+else { $mdTable | Set-Content -Path $Path }
0 commit comments