- Export domain consts (FilterStateOpen/Closed, OrderByCreated/Updated,
OrderDirectionAsc/Desc) in types.go
- Change State fields to *string (nil = all states)
- Add DiscussionListResult type with NextCursor for pagination
- Update List/Search signatures: add after param, return result type
- Add limit <= 0 guard clauses in client methods
- Replace strings.ToUpper/ToLower with switch statements + default errors
- Rename pageLimit to remaining, hoist hasDiscussionsEnabled check
- Use qualifier/keyword terminology in search query building
- Quote author values with %q for whitespace safety
- Add Keywords string field (single string, not []string)
- Split --order into --sort {created|updated} and --order {asc|desc}
- Add --search/-S and --after flags
- Add next field in JSON output envelope
- Extract defaultLimit const
- Add toFilterState helper for CLI-to-domain mapping
- Move matchCategory to shared/categories.go with godoc
- Use single-line error messages with sorted slugs
- Add (preview) annotations to Short docs
- Update Use to "list [flags]"
- Add examples for --answered=false, --state all, multi-label
- Update tests for new signatures and new flags
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
package discussion
|
|
|
|
import (
|
|
"github.com/MakeNowJust/heredoc"
|
|
cmdList "github.com/cli/cli/v2/pkg/cmd/discussion/list"
|
|
"github.com/cli/cli/v2/pkg/cmdutil"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// NewCmdDiscussion returns the top-level "discussion" command.
|
|
func NewCmdDiscussion(f *cmdutil.Factory) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "discussion <command>",
|
|
Short: "Work with GitHub Discussions (preview)",
|
|
Long: heredoc.Doc(`
|
|
Working with discussions in the GitHub CLI is in preview and subject to change without notice.
|
|
`),
|
|
Example: heredoc.Doc(`
|
|
$ gh discussion list
|
|
$ gh discussion create --category "General" --title "Hello"
|
|
$ gh discussion view 123
|
|
`),
|
|
Annotations: map[string]string{
|
|
"help:arguments": heredoc.Doc(`
|
|
A discussion can be supplied as argument in any of the following formats:
|
|
- by number, e.g. "123"; or
|
|
- by URL, e.g. "https://github.com/OWNER/REPO/discussions/123".
|
|
`),
|
|
},
|
|
GroupID: "core",
|
|
}
|
|
|
|
cmdutil.EnableRepoOverride(cmd, f)
|
|
|
|
cmdutil.AddGroup(cmd, "General commands",
|
|
cmdList.NewCmdList(f, nil),
|
|
)
|
|
|
|
return cmd
|
|
}
|