File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 " Bash(gh api:*)" ,
1717 " Bash(gh search:*)" ,
1818 " Bash(gh issue:*)" ,
19- " mcp__Mintlify__*" ,
19+ " mcp__Mintlify__*" ,
2020 " mcp__github__*" ,
2121 " mcp__playwright__*" ,
2222 " WebSearch" ,
2727 " WebFetch(domain:natemcmaster.github.io)" ,
2828 " WebFetch(domain:stackoverflow.com)" ,
2929 " WebFetch(domain:www.nuget.org)" ,
30- " WebFetch(domain:www.anthropic.com)"
30+ " WebFetch(domain:www.anthropic.com)" ,
31+ " Bash(gh run:*)" ,
32+ " Bash(gh workflow:*)"
3133 ],
3234 "deny" : [],
3335 "ask" : [],
Original file line number Diff line number Diff line change @@ -393,18 +393,18 @@ jobs:
393393 $packageList += "- [$packageName](https://www.nuget.org/packages/$packageName/$version)`n"
394394 }
395395
396- $body = @"
397- # # NuGet Packages
398- $packageList
399-
400- # # Installation
401- ` ` ` ` ` ` xml
402- <Project Sdk="DotNetDocs.Sdk/$version">
403- <!-- That's it! -->
404- </Project>
405- ` ` ` ` ` `
406- " @
407-
396+ $lines = @(
397+ " ## NuGet Packages",
398+ $packageList,
399+ "",
400+ " ## Installation",
401+ ' ```xml',
402+ " <Project Sdk="" DotNetDocs.Sdk/$version"">",
403+ " <!-- That's it! -->",
404+ " </Project>",
405+ ' ```'
406+ )
407+ $body = $lines -join "`n"
408408 Set-Content -Path "./release-notes.md" -Value $body -Encoding utf8
409409
410410 - name : Create GitHub Release
You can’t perform that action at this time.
0 commit comments