Skip to content

Commit 325a00d

Browse files
[Ignore] Update changelog and ADS script (#2209)
1 parent 3c4791d commit 325a00d

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

tools/changelog/updateChangelog.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ $cloneParams = @{
299299
CheckoutBranch = $branchName
300300
CloneBranch = $PsesBaseBranch
301301
Clobber = $true
302-
Remotes = @{ 'upstream' = "https://github.com/$TargetFork/$vscodeRepoName" }
302+
Remotes = @{ 'upstream' = "https://github.com/$TargetFork/$psesRepoName" }
303303
}
304304
Copy-GitRepository @cloneParams -Verbose:$VerbosePreference
305305

tools/postReleaseScripts/updateAzureDataStudio.ps1

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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
}
276280
New-GitHubPR @prParams

0 commit comments

Comments
 (0)