1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 22:57:46 +00:00

fix the release note scripts (#538)

* fix link to `reedline` which is `nushell/reedline`

* add a `#` to the PR number in MD links
This commit is contained in:
Antoine Stevan 2023-07-03 10:10:38 +02:00 committed by GitHub
parent 3c436c4153
commit bc54b622fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ def main [] {
[Extension nushell/vscode-nushell-lang]
[Documentation nushell/nushell.github.io]
[Nu_Scripts nushell/nu_scripts]
[Reedline reedline]
[Reedline nushell/reedline]
]
$changelogs | each {|changelog|

View file

@ -41,7 +41,7 @@ def main [
if $no_author {
return (
$prs | each {|pr|
let link = (md-link $pr.number $pr.url)
let link = (md-link $"#($pr.number)" $pr.url)
$"- ($link) ($pr.title)"
}
| str join "\n"