Skip to content

Commit 0cbe576

Browse files
committed
Replace double quotes with single quotes
This is simpler and looks better in the release notes too
1 parent 2b73cb3 commit 0cbe576

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
ConvertFrom-Json |
4343
select -ExpandProperty id
4444
45-
$notes = (Get-Content .\changelog.md | where { !($_ -like '\*') } | %{ $_.replace('\', '\\').replace('"', '\"') }) -join '\n'
45+
$notes = (Get-Content .\changelog.md | where { !($_ -like '\*') } | %{ $_.replace('\', '\\').replace('"', "'") }) -join '\n'
4646
$headers = @{ 'Accept'='application/vnd.github.v3+json;charset=utf-8'; 'Authorization' = "bearer $env:GITHUB_TOKEN" }
4747
$body = '{ "body":"' + $notes + '" }'
4848

0 commit comments

Comments
 (0)