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 2b73cb3 commit 0cbe576Copy full SHA for 0cbe576
1 file changed
.github/workflows/release-notes.yml
@@ -42,7 +42,7 @@ jobs:
42
ConvertFrom-Json |
43
select -ExpandProperty id
44
45
- $notes = (Get-Content .\changelog.md | where { !($_ -like '\*') } | %{ $_.replace('\', '\\').replace('"', '\"') }) -join '\n'
+ $notes = (Get-Content .\changelog.md | where { !($_ -like '\*') } | %{ $_.replace('\', '\\').replace('"', "'") }) -join '\n'
46
$headers = @{ 'Accept'='application/vnd.github.v3+json;charset=utf-8'; 'Authorization' = "bearer $env:GITHUB_TOKEN" }
47
$body = '{ "body":"' + $notes + '" }'
48
0 commit comments