Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Readme.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,8 @@ so you don't have to type the full name every time:
|`issue create` |`c`, `new`, `add`
|`issue develop` |`d`, `dev`
|`issue list` |`l`, `ls`
|`issue status` |`s`, `st`, `stat`
|`issue assign` |`a`
|`issue update` |`u`
|`issue pr` |`pull-request`
|`team list` |`l`, `ls`
Expand Down Expand Up @@ -297,6 +299,23 @@ the team has more than one matching state.
$ lc issue update --close --status Done --reason "These were closable" CRY-1234 CRY-2
----

==== Move an issue to a different workflow state

Changes the workflow state of one or more issues. Prompts interactively when
`--status`/`-s` is omitted.

[source,sh]
----
$ lc issue status CRY-1234 <1>
$ lc issue status CRY-1234 -s "In Progress" <2>
$ lc issue status CRY-1 CRY-2 CRY-3 -s Done <3>
$ lc issue status CRY-1234 -s Done -m "Wrapped up" <4>
----
<1> Prompts interactively to pick a state
<2> Move to a named workflow state (case-insensitive, unique-prefix match)
<3> Move multiple issues at once — updates run concurrently
<4> Add a comment alongside the state change

==== Default team/project (profiles)

Not in Ruby's `linear-cli` - save a named team/project bundle once, then
Expand Down