Skip to content

Commit 7104a48

Browse files
committed
Fix check-prs input/output types
1 parent 1bd4074 commit 7104a48

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

make_release/notes/tools.nu

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@ export def release-notes [
6969
export def check-prs [
7070
version: string@"nu-complete version" # the version to generate release notes for
7171
--as-table (-t) # output PR checks as a table
72-
]: nothing -> nothing {
72+
]: [
73+
nothing -> nothing,
74+
nothing -> table
75+
] {
7376
query-prs --milestone=$version
7477
| where not author.is_bot
7578
| sort-by mergedAt

0 commit comments

Comments
 (0)