func descriptionFlag()

in internal/flags/create_flags.go [73:80]


func descriptionFlag(hidden bool) *cli.StringFlag {
	return &cli.StringFlag{
		Name:     Description,
		Usage:    "The description of the release; you can use Markdown. A file can be used to read the description contents, must exist inside the working directory; if it contains any whitespace, it will be treated as a string",
		Required: false,
		Hidden:   hidden,
	}
}