Add cancelled status for tasks
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
6e872121eb
commit
bf38532f59
5 changed files with 7 additions and 6 deletions
|
|
@ -223,7 +223,7 @@ def task_show(ctx, id):
|
|||
@task.command("update")
|
||||
@click.argument("task_id")
|
||||
@click.option("--status", type=click.Choice(
|
||||
["pending", "in_progress", "review", "done", "blocked", "decomposed"]),
|
||||
["pending", "in_progress", "review", "done", "blocked", "decomposed", "cancelled"]),
|
||||
default=None, help="New status")
|
||||
@click.option("--priority", type=int, default=None, help="New priority (1-10)")
|
||||
@click.pass_context
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue