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 0cbe576 commit b07aaabCopy full SHA for b07aaab
.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('"', "'").replace('undefined', 'un-defined') }) -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