Skip to content

Commit a308ff7

Browse files
committed
(#251) CI: only store links to the release notes, not the whole notes
1 parent 60325a1 commit a308ff7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/scripts/Update-Dependencies.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function FetchVersionDetails($dependency)
5858
@{
5959
Name = $dependency
6060
Version = $details.tag_name.Trim('v')
61-
ReleaseNotes = $details.body
61+
ReleaseNotesUrl = $details.html_url
6262
DownloadUrl = $releaseAsset.browser_download_url
6363
}
6464
}
@@ -133,7 +133,7 @@ if ($hasChanges)
133133
[array] $updateReleaseNoteStrings = $updates.Values | ForEach-Object {
134134
@"
135135
## $($_.Name) v$($_.Version)
136-
$($_.ReleaseNotes)
136+
[Read the release notes]($($_.ReleaseNotesUrl))
137137
"@
138138
}
139139
$prBody = @'

0 commit comments

Comments
 (0)