1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 06:37:46 +00:00
nu_scripts/make_release/release-note/gh-release-excerpt.nu
Stefan Holderbach 14e3ecb139
Update release excerpt script (#1015)
We moved to a 6 weeks cycle

Also some unnecessary stuff in the API call
2025-01-16 14:51:14 +01:00

41 lines
1.3 KiB
Text
Executable file

#!/usr/bin/env nu
# Prepare the GitHub release text
def main [
versionname: string # The version we release now
bloglink: string # The link to the blogpost
date?: datetime # the date of the last release (default to 6 weeks ago, excluded)
] {
let date = (
if $date == null { (date now) - 6wk + 1day } else { $date }
| format date "%Y-%m-%d"
)
let repo = "nushell/nushell"
let query = $"merged:>($date)"
let prs = (
gh --repo $repo pr list
--state merged
--limit (inf | into int)
--json author
--search $query
| from json
| update author { get login }
)
let authors = $prs.author | uniq | sort -i
let author_string = ($authors | each {|name| $"@($name)"} | str join ", " )
let release_text = [
$"This is the ($versionname) release of Nushell. You can learn more about this release here: ($bloglink)",
"",
"For convenience, we are providing full builds for Windows, Linux, and macOS. Be sure you have the requirements to enable all capabilities: https://www.nushell.sh/book/installation.html#dependencies",
"",
$"This release was made possible by PR contributions from ($author_string)"
]
$release_text | str join "\n"
}