@@ -16,6 +16,10 @@ param(
1616 [string []]
1717 $GalleryFileName = (' extensionsGallery.json' , ' extensionsGallery-insider.json' ),
1818
19+ [Parameter ()]
20+ [string ]
21+ $SourceFork = ' rjmholt' ,
22+
1923 [Parameter ()]
2024 [string ]
2125 $TargetFork = ' Microsoft' ,
@@ -52,7 +56,7 @@ function NewReleaseVersionEntry
5256 files = @ (
5357 [ordered ]@ {
5458 assetType = ' Microsoft.VisualStudio.Services.VSIXPackage'
55- source = " https://sqlopsextensions.blob.core.windows.net/extensions/powershell/PowerShell-$Version .vsix"
59+ source = " https://sqlopsextensions.blob.core.windows.net/extensions/powershell/ms-vscode. PowerShell-$Version .vsix"
5660 }
5761 [ordered ]@ {
5862 assetType = ' Microsoft.VisualStudio.Services.Icons.Default'
@@ -244,7 +248,7 @@ function UpdateGalleryFile
244248$repoLocation = Join-Path ([System.IO.Path ]::GetTempPath()) ' ads-temp-checkout'
245249
246250$cloneParams = @ {
247- OriginRemote = ' https://github.com/rjmholt /AzureDataStudio'
251+ OriginRemote = " https://github.com/$SourceFork /AzureDataStudio"
248252 Destination = $repoLocation
249253 CloneBranch = ' release/extensions'
250254 CheckoutBranch = $branchName
@@ -271,6 +275,6 @@ $prParams = @{
271275 Title = " Update PowerShell extension to v$ExtensionVersion "
272276 Description = $PRDescription
273277 GitHubToken = $GitHubToken
274- FromOrg = ' rjmholt '
278+ FromOrg = $SourceFork
275279}
276280New-GitHubPR @prParams
0 commit comments