maton linear issue create
Create a new issue
maton linear issue create [flags]
Options
-
--connection <string> - Connection ID to route through (Maton-Connection header)
-d,--description <string>- Issue description (markdown)
-
--dry-run - Print the request that would be sent without executing it
-
--format <string> - Output format: 'json' (default) or 'text' on supported commands
-q,--jq <expression>- Filter JSON output using a jq expression
-
--paginate - Follow next_cursor and concatenate all pages (list commands only)
-
--priority <string> - Priority (0=None, 1=Urgent, 2=High, 3=Medium, 4=Low)
-
--team-id <string> - Team ID (UUID, required)
-
--template <string> - Format JSON output using a Go template; see "maton help formatting"
-F,--text-from-file <file>- Read description from file (or `-` for stdin)
-t,--title <string>- Issue title (required)
Options inherited from parent commands
-p,--profile <string>- Profile to use for this invocation (overrides the active profile; also reads MATON_PROFILE)
Examples
$ maton linear issue create --team-id <uuid> -t 'Fix login'
$ maton linear issue create --team-id <uuid> -t 'Bug' -d 'Repro: ...' --priority 2
$ cat description.md | maton linear issue create --team-id <uuid> -t 'Spec' -F -